Plugin Directory

Changeset 3067061


Ignore:
Timestamp:
04/08/2024 04:22:13 PM (23 months ago)
Author:
mxp
Message:

update 3.0.19

Location:
mxp-dev-tools
Files:
6 edited
18 copied

Legend:

Unmodified
Added
Removed
  • mxp-dev-tools/tags/3.0.19/includes/db-optimize.php

    r3059186 r3067061  
    10791079            wp_send_json_error('請求驗證有誤!');
    10801080        }
     1081        global $wp_filter;
     1082        // 清空當前註冊的所有事件,避免影響後續的重置作業
     1083        $wp_filter          = [];
    10811084        $del_uploads        = false;
    10821085        $clean_all_tables   = true;
     
    11701173        }
    11711174        // 重新啟用工具箱外掛
    1172         @activate_plugin(plugin_basename(__FILE__));
     1175        @activate_plugin('mxp-dev-tools/index.php');
    11731176        // 重新把設定存回去
    11741177        foreach ($oldsite_options as $option => $value) {
  • mxp-dev-tools/tags/3.0.19/index.php

    r3059186 r3067061  
    44 * Plugin URI: https://goo.gl/2gLq18
    55 * Description: 一介資男の常用外掛整理與常用開發功能整合外掛。
    6  * Version: 3.0.18
     6 * Version: 3.0.19
    77 * Author: Chun
    88 * Author URI: https://www.mxp.tw/contact/
     
    2626    use SearchReplace;
    2727    use Utility;
    28     static $VERSION                   = '3.0.18';
     28    static $VERSION                   = '3.0.19';
    2929    private $themeforest_api_base_url = 'https://api.envato.com/v3';
    3030    protected static $instance        = null;
  • mxp-dev-tools/tags/3.0.19/mxp-login-path.php

    r3059186 r3067061  
    44 * Plugin URI: https://tw.wordpress.org/plugins/mxp-dev-tools/
    55 * Description: 隱藏後台登入位置工具。啟用即更改預設登入網址為 /admin-staff/
    6  * Version: 3.0.18
     6 * Version: 3.0.19
    77 * Author: Chun
    88 * Author URI: https://www.mxp.tw/contact/
  • mxp-dev-tools/tags/3.0.19/mxp-site-manager.php

    r3059186 r3067061  
    44 * Plugin URI: https://tw.wordpress.org/plugins/mxp-dev-tools/
    55 * Description: 管理多個 WordPress 站點的工具。
    6  * Version: 3.0.18
     6 * Version: 3.0.19
    77 * Author: Chun
    88 * Author URI: https://www.mxp.tw/contact/
     
    3535class MDTSiteManager {
    3636    public $plugin_slug    = 'mdt-site-manager';
    37     public static $VERSION = '3.0.18';
     37    public static $VERSION = '3.0.19';
    3838
    3939    public function __construct() {
  • mxp-dev-tools/tags/3.0.19/mxp-snippets.php

    r3059186 r3067061  
    44 * Plugin URI: https://tw.wordpress.org/plugins/mxp-dev-tools/
    55 * Description: 整合 GitHub 中常用的程式碼片段。請注意,並非所有網站都適用全部的選項,有進階需求可以透過設定 wp-config.php 中此外掛預設常數,啟用或停用部分功能。
    6  * Version: 3.0.18
     6 * Version: 3.0.19
    77 * Author: Chun
    88 * Author URI: https://www.mxp.tw/contact/
  • mxp-dev-tools/tags/3.0.19/readme.txt

    r3059186 r3067061  
    66Requires PHP: 5.6
    77Tested up to: 6.4
    8 Stable tag: 3.0.18
     8Stable tag: 3.0.19
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    7878
    7979== Changelog ==
     80
     81= 3.0.19 =
     82
     83* 修正工具箱中重置網站的功能會被其他外掛影響的錯誤
    8084
    8185= 3.0.18 =
  • mxp-dev-tools/trunk/includes/db-optimize.php

    r3059186 r3067061  
    10791079            wp_send_json_error('請求驗證有誤!');
    10801080        }
     1081        global $wp_filter;
     1082        // 清空當前註冊的所有事件,避免影響後續的重置作業
     1083        $wp_filter          = [];
    10811084        $del_uploads        = false;
    10821085        $clean_all_tables   = true;
     
    11701173        }
    11711174        // 重新啟用工具箱外掛
    1172         @activate_plugin(plugin_basename(__FILE__));
     1175        @activate_plugin('mxp-dev-tools/index.php');
    11731176        // 重新把設定存回去
    11741177        foreach ($oldsite_options as $option => $value) {
  • mxp-dev-tools/trunk/index.php

    r3059186 r3067061  
    44 * Plugin URI: https://goo.gl/2gLq18
    55 * Description: 一介資男の常用外掛整理與常用開發功能整合外掛。
    6  * Version: 3.0.18
     6 * Version: 3.0.19
    77 * Author: Chun
    88 * Author URI: https://www.mxp.tw/contact/
     
    2626    use SearchReplace;
    2727    use Utility;
    28     static $VERSION                   = '3.0.18';
     28    static $VERSION                   = '3.0.19';
    2929    private $themeforest_api_base_url = 'https://api.envato.com/v3';
    3030    protected static $instance        = null;
  • mxp-dev-tools/trunk/mxp-login-path.php

    r3059186 r3067061  
    44 * Plugin URI: https://tw.wordpress.org/plugins/mxp-dev-tools/
    55 * Description: 隱藏後台登入位置工具。啟用即更改預設登入網址為 /admin-staff/
    6  * Version: 3.0.18
     6 * Version: 3.0.19
    77 * Author: Chun
    88 * Author URI: https://www.mxp.tw/contact/
  • mxp-dev-tools/trunk/mxp-site-manager.php

    r3059186 r3067061  
    44 * Plugin URI: https://tw.wordpress.org/plugins/mxp-dev-tools/
    55 * Description: 管理多個 WordPress 站點的工具。
    6  * Version: 3.0.18
     6 * Version: 3.0.19
    77 * Author: Chun
    88 * Author URI: https://www.mxp.tw/contact/
     
    3535class MDTSiteManager {
    3636    public $plugin_slug    = 'mdt-site-manager';
    37     public static $VERSION = '3.0.18';
     37    public static $VERSION = '3.0.19';
    3838
    3939    public function __construct() {
  • mxp-dev-tools/trunk/mxp-snippets.php

    r3059186 r3067061  
    44 * Plugin URI: https://tw.wordpress.org/plugins/mxp-dev-tools/
    55 * Description: 整合 GitHub 中常用的程式碼片段。請注意,並非所有網站都適用全部的選項,有進階需求可以透過設定 wp-config.php 中此外掛預設常數,啟用或停用部分功能。
    6  * Version: 3.0.18
     6 * Version: 3.0.19
    77 * Author: Chun
    88 * Author URI: https://www.mxp.tw/contact/
  • mxp-dev-tools/trunk/readme.txt

    r3059186 r3067061  
    66Requires PHP: 5.6
    77Tested up to: 6.4
    8 Stable tag: 3.0.18
     8Stable tag: 3.0.19
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    7878
    7979== Changelog ==
     80
     81= 3.0.19 =
     82
     83* 修正工具箱中重置網站的功能會被其他外掛影響的錯誤
    8084
    8185= 3.0.18 =
Note: See TracChangeset for help on using the changeset viewer.