Plugin Directory

Changeset 1428137


Ignore:
Timestamp:
06/01/2016 08:13:34 AM (10 years ago)
Author:
seedplugins
Message:

Updating trunk version to the latest development.

Location:
wp-link-status/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wp-link-status/trunk/admin/admin.php

    r1348337 r1428137  
    243243            // Check id and nonce submit
    244244            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'));
    246246        }
    247247    }
  • wp-link-status/trunk/core/scans.php

    r1348337 r1428137  
    185185       
    186186        // 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']);
    188188        $scan->post_status              = WPLNST_Core_Types::check_array_value($config, 'post_status', $post_status_keys, array());
    189189        $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  
    33Tags: broken links, broken, links, crawler, headers, http, nofollow, redirections, scan, status, checker, url
    44Requires at least: 3.4
    5 Tested up to: 4.4.2
    6 Stable tag: 1.0.1
     5Tested up to: 4.5.2
     6Stable tag: 1.0.2
    77License: GPLv2 or later
    88
     
    7474== Changelog ==
    7575
     76= 1.0.2 =
     77May 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
    7682= 1.0.1 =
    7783February 25th, 2016
     
    8793== Upgrade Notice ==
    8894
     95= 1.0.2 =
     96Solved bugs related to Custom Post Types.
     97
    8998= 1.0.1 =
    9099Solved bug editing config of a running scan.
  • wp-link-status/trunk/wp-link-status.php

    r1358160 r1428137  
    44Plugin URI: http://seedplugins.com/wp-link-status/
    55Description: Check and manage HTTP response codes of all your content site links and images.
    6 Version: 1.0.1
    7 Author: SeedPlugins
     6Version: 1.0.2
     7Author: Pau Iglesias, SeedPlugins
    88License: GPLv2 or later
    99Text Domain: wplnst
     
    2121define('WPLNST_FILE', __FILE__);
    2222define('WPLNST_PATH', dirname(WPLNST_FILE));
    23 define('WPLNST_VERSION', '1.0.1');
     23define('WPLNST_VERSION', '1.0.2');
    2424
    2525// Check scan crawling action
Note: See TracChangeset for help on using the changeset viewer.