Plugin Directory

Changeset 3184907


Ignore:
Timestamp:
11/09/2024 04:51:37 PM (16 months ago)
Author:
mxp
Message:

update 3.3.1

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

Legend:

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

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

    r3184905 r3184907  
    77 * Requires PHP: 5.6
    88 * Tested up to: 6.7
    9  * Stable tag: 3.3.0
    10  * Version: 3.3.0
     9 * Stable tag: 3.3.1
     10 * Version: 3.3.1
    1111 * Author: Chun
    1212 * Author URI: https://www.mxp.tw/contact/
  • mxp-dev-tools/tags/3.3.1/mxp-site-manager.php

    r3184905 r3184907  
    77 * Requires PHP: 5.6
    88 * Tested up to: 6.7
    9  * Stable tag: 3.3.0
    10  * Version: 3.3.0
     9 * Stable tag: 3.3.1
     10 * Version: 3.3.1
    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.3.0';
     41    public static $VERSION = '3.3.1';
    4242
    4343    public function __construct() {
  • mxp-dev-tools/tags/3.3.1/mxp-snippets.php

    r3184905 r3184907  
    77 * Requires PHP: 5.6
    88 * Tested up to: 6.7
    9  * Stable tag: 3.3.0
    10  * Version: 3.3.0
     9 * Stable tag: 3.3.1
     10 * Version: 3.3.1
    1111 * Author: Chun
    1212 * Author URI: https://www.mxp.tw/contact/
     
    415415
    416416    public function basic_auth_protect() {
    417         if (MDT_BASIC_AUTH_USERNAME != "" && MDT_BASIC_AUTH_PASSWORD != "") {
     417        if (MDT_BASIC_AUTH_USERNAME != "" && MDT_BASIC_AUTH_PASSWORD != "" && !is_user_logged_in()) {
    418418            // 設定用戶名稱與密碼
    419419            $username = MDT_BASIC_AUTH_USERNAME;
  • mxp-dev-tools/tags/3.3.1/readme.txt

    r3184905 r3184907  
    66Requires PHP: 5.6
    77Tested up to: 6.7
    8 Stable tag: 3.3.0
     8Stable tag: 3.3.1
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    7878== Changelog ==
    7979
    80 = 3.3.0 =
     80= 3.3.1 =
    8181
    8282* 新增防範嘗試暴力註冊與登入的機器人方法
  • mxp-dev-tools/trunk/index.php

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

    r3184905 r3184907  
    77 * Requires PHP: 5.6
    88 * Tested up to: 6.7
    9  * Stable tag: 3.3.0
    10  * Version: 3.3.0
     9 * Stable tag: 3.3.1
     10 * Version: 3.3.1
    1111 * Author: Chun
    1212 * Author URI: https://www.mxp.tw/contact/
  • mxp-dev-tools/trunk/mxp-site-manager.php

    r3184905 r3184907  
    77 * Requires PHP: 5.6
    88 * Tested up to: 6.7
    9  * Stable tag: 3.3.0
    10  * Version: 3.3.0
     9 * Stable tag: 3.3.1
     10 * Version: 3.3.1
    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.3.0';
     41    public static $VERSION = '3.3.1';
    4242
    4343    public function __construct() {
  • mxp-dev-tools/trunk/mxp-snippets.php

    r3184905 r3184907  
    77 * Requires PHP: 5.6
    88 * Tested up to: 6.7
    9  * Stable tag: 3.3.0
    10  * Version: 3.3.0
     9 * Stable tag: 3.3.1
     10 * Version: 3.3.1
    1111 * Author: Chun
    1212 * Author URI: https://www.mxp.tw/contact/
     
    415415
    416416    public function basic_auth_protect() {
    417         if (MDT_BASIC_AUTH_USERNAME != "" && MDT_BASIC_AUTH_PASSWORD != "") {
     417        if (MDT_BASIC_AUTH_USERNAME != "" && MDT_BASIC_AUTH_PASSWORD != "" && !is_user_logged_in()) {
    418418            // 設定用戶名稱與密碼
    419419            $username = MDT_BASIC_AUTH_USERNAME;
  • mxp-dev-tools/trunk/readme.txt

    r3184905 r3184907  
    66Requires PHP: 5.6
    77Tested up to: 6.7
    8 Stable tag: 3.3.0
     8Stable tag: 3.3.1
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    7878== Changelog ==
    7979
    80 = 3.3.0 =
     80= 3.3.1 =
    8181
    8282* 新增防範嘗試暴力註冊與登入的機器人方法
Note: See TracChangeset for help on using the changeset viewer.