Plugin Directory

Changeset 3165131


Ignore:
Timestamp:
10/08/2024 04:33:53 PM (17 months ago)
Author:
mxp
Message:

update 3.2.4

Location:
mxp-dev-tools
Files:
1 deleted
5 edited
8 copied

Legend:

Unmodified
Added
Removed
  • mxp-dev-tools/tags/3.2.4/index.php

    r3163393 r3165131  
    77 * Requires PHP: 5.6
    88 * Tested up to: 6.6
    9  * Stable tag: 3.2.3
    10  * Version: 3.2.3
     9 * Stable tag: 3.2.4
     10 * Version: 3.2.4
    1111 * Author: Chun
    1212 * Author URI: https://www.mxp.tw/contact/
     
    3939    use SearchReplace;
    4040    use Utility;
    41     static $VERSION = '3.2.3';
     41    static $VERSION = '3.2.4';
    4242    private $themeforest_api_base_url = 'https://api.envato.com/v3';
    4343    protected static $instance = null;
  • mxp-dev-tools/tags/3.2.4/mxp-login-path.php

    r3163393 r3165131  
    77 * Requires PHP: 5.6
    88 * Tested up to: 6.6
    9  * Stable tag: 3.2.3
    10  * Version: 3.2.3
     9 * Stable tag: 3.2.4
     10 * Version: 3.2.4
    1111 * Author: Chun
    1212 * Author URI: https://www.mxp.tw/contact/
  • mxp-dev-tools/tags/3.2.4/mxp-site-manager.php

    r3163393 r3165131  
    77 * Requires PHP: 5.6
    88 * Tested up to: 6.6
    9  * Stable tag: 3.2.3
    10  * Version: 3.2.3
     9 * Stable tag: 3.2.4
     10 * Version: 3.2.4
    1111 * Author: Chun
    1212 * Author URI: https://www.mxp.tw/contact/
     
    3939class MDTSiteManager {
    4040    public $plugin_slug = 'mdt-site-manager';
    41     public static $VERSION = '3.2.3';
     41    public static $VERSION = '3.2.4';
    4242
    4343    public function __construct() {
  • mxp-dev-tools/tags/3.2.4/mxp-snippets.php

    r3163393 r3165131  
    77 * Requires PHP: 5.6
    88 * Tested up to: 6.6
    9  * Stable tag: 3.2.3
    10  * Version: 3.2.3
     9 * Stable tag: 3.2.4
     10 * Version: 3.2.4
    1111 * Author: Chun
    1212 * Author URI: https://www.mxp.tw/contact/
     
    392392        if (MDT_ENABLE_BLOCK_USER_FUNCTION) {
    393393            add_filter('wp_authenticate_user', array($this, 'block_user_login'), 100, 2);
    394             if (current_user_can('delete_users')) {
     394            if (current_user_can(apply_filters('mxp_dev_overwrite_block_user_function_cap', 'create_users'))) {
    395395                add_action('show_user_profile', array($this, 'add_user_meta_fields'));
    396396                add_action('edit_user_profile', array($this, 'add_user_meta_fields'));
  • mxp-dev-tools/tags/3.2.4/readme.txt

    r3163393 r3165131  
    66Requires PHP: 5.6
    77Tested up to: 6.6
    8 Stable tag: 3.2.3
     8Stable tag: 3.2.4
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    7777
    7878== Changelog ==
     79
     80= 3.2.4 =
     81
     82* 調整封鎖使用者權限設定的彈性
    7983
    8084= 3.2.3 =
  • mxp-dev-tools/trunk/index.php

    r3163393 r3165131  
    77 * Requires PHP: 5.6
    88 * Tested up to: 6.6
    9  * Stable tag: 3.2.3
    10  * Version: 3.2.3
     9 * Stable tag: 3.2.4
     10 * Version: 3.2.4
    1111 * Author: Chun
    1212 * Author URI: https://www.mxp.tw/contact/
     
    3939    use SearchReplace;
    4040    use Utility;
    41     static $VERSION = '3.2.3';
     41    static $VERSION = '3.2.4';
    4242    private $themeforest_api_base_url = 'https://api.envato.com/v3';
    4343    protected static $instance = null;
  • mxp-dev-tools/trunk/mxp-login-path.php

    r3163393 r3165131  
    77 * Requires PHP: 5.6
    88 * Tested up to: 6.6
    9  * Stable tag: 3.2.3
    10  * Version: 3.2.3
     9 * Stable tag: 3.2.4
     10 * Version: 3.2.4
    1111 * Author: Chun
    1212 * Author URI: https://www.mxp.tw/contact/
  • mxp-dev-tools/trunk/mxp-site-manager.php

    r3163393 r3165131  
    77 * Requires PHP: 5.6
    88 * Tested up to: 6.6
    9  * Stable tag: 3.2.3
    10  * Version: 3.2.3
     9 * Stable tag: 3.2.4
     10 * Version: 3.2.4
    1111 * Author: Chun
    1212 * Author URI: https://www.mxp.tw/contact/
     
    3939class MDTSiteManager {
    4040    public $plugin_slug = 'mdt-site-manager';
    41     public static $VERSION = '3.2.3';
     41    public static $VERSION = '3.2.4';
    4242
    4343    public function __construct() {
  • mxp-dev-tools/trunk/mxp-snippets.php

    r3163393 r3165131  
    77 * Requires PHP: 5.6
    88 * Tested up to: 6.6
    9  * Stable tag: 3.2.3
    10  * Version: 3.2.3
     9 * Stable tag: 3.2.4
     10 * Version: 3.2.4
    1111 * Author: Chun
    1212 * Author URI: https://www.mxp.tw/contact/
     
    392392        if (MDT_ENABLE_BLOCK_USER_FUNCTION) {
    393393            add_filter('wp_authenticate_user', array($this, 'block_user_login'), 100, 2);
    394             if (current_user_can('delete_users')) {
     394            if (current_user_can(apply_filters('mxp_dev_overwrite_block_user_function_cap', 'create_users'))) {
    395395                add_action('show_user_profile', array($this, 'add_user_meta_fields'));
    396396                add_action('edit_user_profile', array($this, 'add_user_meta_fields'));
  • mxp-dev-tools/trunk/readme.txt

    r3163393 r3165131  
    66Requires PHP: 5.6
    77Tested up to: 6.6
    8 Stable tag: 3.2.3
     8Stable tag: 3.2.4
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    7777
    7878== Changelog ==
     79
     80= 3.2.4 =
     81
     82* 調整封鎖使用者權限設定的彈性
    7983
    8084= 3.2.3 =
Note: See TracChangeset for help on using the changeset viewer.