Plugin Directory

Changeset 3046200


Ignore:
Timestamp:
03/06/2024 10:03:59 AM (2 years ago)
Author:
mxp
Message:

update 3.0.15

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

Legend:

Unmodified
Added
Removed
  • mxp-dev-tools/tags/3.0.15/includes/assets/js/site-manager/app.js

    r3045764 r3046200  
    3131                if (tableKey == 'whois') {
    3232                    var expiration = '';
    33                     if (item['whois']['data'] !== undefined) {
     33                    if (item['whois'] && item['whois']['data'] !== undefined) {
    3434                        expiration = item['whois']['data']['expiration'] !== undefined ? item['whois']['data']['expiration'] : '';
    3535                    }
     
    6666                if (tableKey == 'whois') {
    6767                    var expiration = '';
    68                     if (item['whois']['data'] !== undefined) {
     68                    if (item['whois'] && item['whois']['data'] !== undefined) {
    6969                        expiration = item['whois']['data']['expiration'] !== undefined ? item['whois']['data']['expiration'] : '';
    7070                    }
  • mxp-dev-tools/tags/3.0.15/index.php

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

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

    r3045764 r3046200  
    44 * Plugin URI: https://tw.wordpress.org/plugins/mxp-dev-tools/
    55 * Description: 管理多個 WordPress 站點的工具。
    6  * Version: 3.0.14
     6 * Version: 3.0.15
    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.14';
     37    public static $VERSION = '3.0.15';
    3838
    3939    public function __construct() {
  • mxp-dev-tools/tags/3.0.15/mxp-snippets.php

    r3045764 r3046200  
    44 * Plugin URI: https://tw.wordpress.org/plugins/mxp-dev-tools/
    55 * Description: 整合 GitHub 中常用的程式碼片段。請注意,並非所有網站都適用全部的選項,有進階需求可以透過設定 wp-config.php 中此外掛預設常數,啟用或停用部分功能。
    6  * Version: 3.0.14
     6 * Version: 3.0.15
    77 * Author: Chun
    88 * Author URI: https://www.mxp.tw/contact/
     
    241241        // 沒登入的使用者都無法呼叫 wp/users 這隻 API。不建議完全封鎖掉,會導致有些後台功能運作失靈
    242242        if (function_exists('is_user_logged_in') && !is_user_logged_in() && MDT_DISABLE_NO_AUTH_ACCESS_REST_USER) {
    243             add_filter('rest_user_query', '__return_empty_array');
     243            // 要影響 Query 結果的話這邊不能傳入空值,要改寫,但下方勾點還可以處理,先放著
     244            // add_filter('rest_user_query', '__return_empty_array');
    244245            add_filter('rest_prepare_user', '__return_empty_array');
    245246        }
  • mxp-dev-tools/tags/3.0.15/readme.txt

    r3045764 r3046200  
    66Requires PHP: 5.6
    77Tested up to: 6.4
    8 Stable tag: 3.0.14
     8Stable tag: 3.0.15
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    7979== Changelog ==
    8080
    81 = 3.0.14 =
     81= 3.0.15 =
    8282
    8383* 修正 Site Manager 的資料載入問題
     84* 修正 Snippets REST API 的權限判斷與勾點置入問題
    8485
    8586= 3.0.13 =
  • mxp-dev-tools/trunk/includes/assets/js/site-manager/app.js

    r3045764 r3046200  
    3131                if (tableKey == 'whois') {
    3232                    var expiration = '';
    33                     if (item['whois']['data'] !== undefined) {
     33                    if (item['whois'] && item['whois']['data'] !== undefined) {
    3434                        expiration = item['whois']['data']['expiration'] !== undefined ? item['whois']['data']['expiration'] : '';
    3535                    }
     
    6666                if (tableKey == 'whois') {
    6767                    var expiration = '';
    68                     if (item['whois']['data'] !== undefined) {
     68                    if (item['whois'] && item['whois']['data'] !== undefined) {
    6969                        expiration = item['whois']['data']['expiration'] !== undefined ? item['whois']['data']['expiration'] : '';
    7070                    }
  • mxp-dev-tools/trunk/index.php

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

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

    r3045764 r3046200  
    44 * Plugin URI: https://tw.wordpress.org/plugins/mxp-dev-tools/
    55 * Description: 管理多個 WordPress 站點的工具。
    6  * Version: 3.0.14
     6 * Version: 3.0.15
    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.14';
     37    public static $VERSION = '3.0.15';
    3838
    3939    public function __construct() {
  • mxp-dev-tools/trunk/mxp-snippets.php

    r3045764 r3046200  
    44 * Plugin URI: https://tw.wordpress.org/plugins/mxp-dev-tools/
    55 * Description: 整合 GitHub 中常用的程式碼片段。請注意,並非所有網站都適用全部的選項,有進階需求可以透過設定 wp-config.php 中此外掛預設常數,啟用或停用部分功能。
    6  * Version: 3.0.14
     6 * Version: 3.0.15
    77 * Author: Chun
    88 * Author URI: https://www.mxp.tw/contact/
     
    241241        // 沒登入的使用者都無法呼叫 wp/users 這隻 API。不建議完全封鎖掉,會導致有些後台功能運作失靈
    242242        if (function_exists('is_user_logged_in') && !is_user_logged_in() && MDT_DISABLE_NO_AUTH_ACCESS_REST_USER) {
    243             add_filter('rest_user_query', '__return_empty_array');
     243            // 要影響 Query 結果的話這邊不能傳入空值,要改寫,但下方勾點還可以處理,先放著
     244            // add_filter('rest_user_query', '__return_empty_array');
    244245            add_filter('rest_prepare_user', '__return_empty_array');
    245246        }
  • mxp-dev-tools/trunk/readme.txt

    r3045764 r3046200  
    66Requires PHP: 5.6
    77Tested up to: 6.4
    8 Stable tag: 3.0.14
     8Stable tag: 3.0.15
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    7979== Changelog ==
    8080
    81 = 3.0.14 =
     81= 3.0.15 =
    8282
    8383* 修正 Site Manager 的資料載入問題
     84* 修正 Snippets REST API 的權限判斷與勾點置入問題
    8485
    8586= 3.0.13 =
Note: See TracChangeset for help on using the changeset viewer.