Changeset 3185321
- Timestamp:
- 11/11/2024 02:19:00 AM (16 months ago)
- Location:
- mxp-dev-tools
- Files:
-
- 1 deleted
- 5 edited
- 8 copied
-
tags/3.3.1 (deleted)
-
tags/3.3.2 (copied) (copied from mxp-dev-tools/trunk)
-
tags/3.3.2/includes/class_plugins_list_table.php (copied) (copied from mxp-dev-tools/trunk/includes/class_plugins_list_table.php)
-
tags/3.3.2/includes/hooks-usage.php (copied) (copied from mxp-dev-tools/trunk/includes/hooks-usage.php)
-
tags/3.3.2/index.php (copied) (copied from mxp-dev-tools/trunk/index.php) (2 diffs)
-
tags/3.3.2/mxp-login-path.php (copied) (copied from mxp-dev-tools/trunk/mxp-login-path.php) (1 diff)
-
tags/3.3.2/mxp-site-manager.php (copied) (copied from mxp-dev-tools/trunk/mxp-site-manager.php) (2 diffs)
-
tags/3.3.2/mxp-snippets.php (copied) (copied from mxp-dev-tools/trunk/mxp-snippets.php) (2 diffs)
-
tags/3.3.2/readme.txt (copied) (copied from mxp-dev-tools/trunk/readme.txt) (2 diffs)
-
trunk/index.php (modified) (2 diffs)
-
trunk/mxp-login-path.php (modified) (1 diff)
-
trunk/mxp-site-manager.php (modified) (2 diffs)
-
trunk/mxp-snippets.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mxp-dev-tools/tags/3.3.2/index.php
r3184907 r3185321 7 7 * Requires PHP: 5.6 8 8 * Tested up to: 6.7 9 * Stable tag: 3.3. 110 * Version: 3.3. 19 * Stable tag: 3.3.2 10 * Version: 3.3.2 11 11 * Author: Chun 12 12 * Author URI: https://www.mxp.tw/contact/ … … 39 39 use SearchReplace; 40 40 use Utility; 41 static $VERSION = '3.3. 1';41 static $VERSION = '3.3.2'; 42 42 private $themeforest_api_base_url = 'https://api.envato.com/v3'; 43 43 protected static $instance = null; -
mxp-dev-tools/tags/3.3.2/mxp-login-path.php
r3184907 r3185321 7 7 * Requires PHP: 5.6 8 8 * Tested up to: 6.7 9 * Stable tag: 3.3. 110 * Version: 3.3. 19 * Stable tag: 3.3.2 10 * Version: 3.3.2 11 11 * Author: Chun 12 12 * Author URI: https://www.mxp.tw/contact/ -
mxp-dev-tools/tags/3.3.2/mxp-site-manager.php
r3184907 r3185321 7 7 * Requires PHP: 5.6 8 8 * Tested up to: 6.7 9 * Stable tag: 3.3. 110 * Version: 3.3. 19 * Stable tag: 3.3.2 10 * Version: 3.3.2 11 11 * Author: Chun 12 12 * Author URI: https://www.mxp.tw/contact/ … … 39 39 class MDTSiteManager { 40 40 public $plugin_slug = 'mdt-site-manager'; 41 public static $VERSION = '3.3. 1';41 public static $VERSION = '3.3.2'; 42 42 43 43 public function __construct() { -
mxp-dev-tools/tags/3.3.2/mxp-snippets.php
r3184907 r3185321 7 7 * Requires PHP: 5.6 8 8 * Tested up to: 6.7 9 * Stable tag: 3.3. 110 * Version: 3.3. 19 * Stable tag: 3.3.2 10 * Version: 3.3.2 11 11 * Author: Chun 12 12 * Author URI: https://www.mxp.tw/contact/ … … 415 415 416 416 public function basic_auth_protect() { 417 if (MDT_BASIC_AUTH_USERNAME != "" && MDT_BASIC_AUTH_PASSWORD != "" && !is_user_logged_in() ) {417 if (MDT_BASIC_AUTH_USERNAME != "" && MDT_BASIC_AUTH_PASSWORD != "" && !is_user_logged_in() && apply_filters('mxp_dev_basic_auth_bypass_check', true)) { 418 418 // 設定用戶名稱與密碼 419 419 $username = MDT_BASIC_AUTH_USERNAME; -
mxp-dev-tools/tags/3.3.2/readme.txt
r3184907 r3185321 6 6 Requires PHP: 5.6 7 7 Tested up to: 6.7 8 Stable tag: 3.3. 18 Stable tag: 3.3.2 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 77 77 78 78 == Changelog == 79 80 = 3.3.2 = 81 82 * 新增過濾的 filter `mxp_dev_basic_auth_bypass_check` 處理如果不想透過 Basic Auth 驗證封鎖的前端頁面判斷功能 79 83 80 84 = 3.3.1 = -
mxp-dev-tools/trunk/index.php
r3184907 r3185321 7 7 * Requires PHP: 5.6 8 8 * Tested up to: 6.7 9 * Stable tag: 3.3. 110 * Version: 3.3. 19 * Stable tag: 3.3.2 10 * Version: 3.3.2 11 11 * Author: Chun 12 12 * Author URI: https://www.mxp.tw/contact/ … … 39 39 use SearchReplace; 40 40 use Utility; 41 static $VERSION = '3.3. 1';41 static $VERSION = '3.3.2'; 42 42 private $themeforest_api_base_url = 'https://api.envato.com/v3'; 43 43 protected static $instance = null; -
mxp-dev-tools/trunk/mxp-login-path.php
r3184907 r3185321 7 7 * Requires PHP: 5.6 8 8 * Tested up to: 6.7 9 * Stable tag: 3.3. 110 * Version: 3.3. 19 * Stable tag: 3.3.2 10 * Version: 3.3.2 11 11 * Author: Chun 12 12 * Author URI: https://www.mxp.tw/contact/ -
mxp-dev-tools/trunk/mxp-site-manager.php
r3184907 r3185321 7 7 * Requires PHP: 5.6 8 8 * Tested up to: 6.7 9 * Stable tag: 3.3. 110 * Version: 3.3. 19 * Stable tag: 3.3.2 10 * Version: 3.3.2 11 11 * Author: Chun 12 12 * Author URI: https://www.mxp.tw/contact/ … … 39 39 class MDTSiteManager { 40 40 public $plugin_slug = 'mdt-site-manager'; 41 public static $VERSION = '3.3. 1';41 public static $VERSION = '3.3.2'; 42 42 43 43 public function __construct() { -
mxp-dev-tools/trunk/mxp-snippets.php
r3184907 r3185321 7 7 * Requires PHP: 5.6 8 8 * Tested up to: 6.7 9 * Stable tag: 3.3. 110 * Version: 3.3. 19 * Stable tag: 3.3.2 10 * Version: 3.3.2 11 11 * Author: Chun 12 12 * Author URI: https://www.mxp.tw/contact/ … … 415 415 416 416 public function basic_auth_protect() { 417 if (MDT_BASIC_AUTH_USERNAME != "" && MDT_BASIC_AUTH_PASSWORD != "" && !is_user_logged_in() ) {417 if (MDT_BASIC_AUTH_USERNAME != "" && MDT_BASIC_AUTH_PASSWORD != "" && !is_user_logged_in() && apply_filters('mxp_dev_basic_auth_bypass_check', true)) { 418 418 // 設定用戶名稱與密碼 419 419 $username = MDT_BASIC_AUTH_USERNAME; -
mxp-dev-tools/trunk/readme.txt
r3184907 r3185321 6 6 Requires PHP: 5.6 7 7 Tested up to: 6.7 8 Stable tag: 3.3. 18 Stable tag: 3.3.2 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 77 77 78 78 == Changelog == 79 80 = 3.3.2 = 81 82 * 新增過濾的 filter `mxp_dev_basic_auth_bypass_check` 處理如果不想透過 Basic Auth 驗證封鎖的前端頁面判斷功能 79 83 80 84 = 3.3.1 =
Note: See TracChangeset
for help on using the changeset viewer.