Changeset 1428137
- Timestamp:
- 06/01/2016 08:13:34 AM (10 years ago)
- Location:
- wp-link-status/trunk
- Files:
-
- 4 edited
-
admin/admin.php (modified) (1 diff)
-
core/scans.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
wp-link-status.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-link-status/trunk/admin/admin.php
r1348337 r1428137 243 243 // Check id and nonce submit 244 244 if (isset($_POST['scan_id']) && isset($_POST['scan_edit_nonce'])) 245 add_action(' init', array(&$this, 'scans_edit_submit'));245 add_action('admin_init', array(&$this, 'scans_edit_submit')); 246 246 } 247 247 } -
wp-link-status/trunk/core/scans.php
r1348337 r1428137 185 185 186 186 // Content options tab 187 $scan->post_types = WPLNST_Core_Types::check_array_value($config, 'post_types', $post_types_keys, array());187 $scan->post_types = (function_exists('did_action') && did_action('init'))? WPLNST_Core_Types::check_array_value($config, 'post_types', $post_types_keys, array()) : ((empty($config['post_types']) || !is_array($config['post_types']))? array() : $config['post_types']); 188 188 $scan->post_status = WPLNST_Core_Types::check_array_value($config, 'post_status', $post_status_keys, array()); 189 189 $scan->check_posts = (!empty($scan->post_types) && is_array($scan->post_types) && !empty($scan->post_status) && is_array($scan->post_status)); -
wp-link-status/trunk/readme.txt
r1358840 r1428137 3 3 Tags: broken links, broken, links, crawler, headers, http, nofollow, redirections, scan, status, checker, url 4 4 Requires at least: 3.4 5 Tested up to: 4. 4.26 Stable tag: 1.0. 15 Tested up to: 4.5.2 6 Stable tag: 1.0.2 7 7 License: GPLv2 or later 8 8 … … 74 74 == Changelog == 75 75 76 = 1.0.2 = 77 May 30th, 2016 78 79 * Solved bug for missing Custom Post Types when saving scan data. 80 * Solved bug enabling Custom Post Types under scan crawling. 81 76 82 = 1.0.1 = 77 83 February 25th, 2016 … … 87 93 == Upgrade Notice == 88 94 95 = 1.0.2 = 96 Solved bugs related to Custom Post Types. 97 89 98 = 1.0.1 = 90 99 Solved bug editing config of a running scan. -
wp-link-status/trunk/wp-link-status.php
r1358160 r1428137 4 4 Plugin URI: http://seedplugins.com/wp-link-status/ 5 5 Description: Check and manage HTTP response codes of all your content site links and images. 6 Version: 1.0. 17 Author: SeedPlugins6 Version: 1.0.2 7 Author: Pau Iglesias, SeedPlugins 8 8 License: GPLv2 or later 9 9 Text Domain: wplnst … … 21 21 define('WPLNST_FILE', __FILE__); 22 22 define('WPLNST_PATH', dirname(WPLNST_FILE)); 23 define('WPLNST_VERSION', '1.0. 1');23 define('WPLNST_VERSION', '1.0.2'); 24 24 25 25 // Check scan crawling action
Note: See TracChangeset
for help on using the changeset viewer.