Plugin Directory

Changeset 2961795


Ignore:
Timestamp:
09/01/2023 05:15:36 PM (3 years ago)
Author:
wpweaver
Message:

6.3.1

Location:
weaverx-theme-support
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • weaverx-theme-support/tags/6.3.1/admin/admin-lib-ts.php

    r2955134 r2961795  
    794794    global $weaverx_opts_cache;    // need to mess with the cache
    795795
     796    if ( !weaverx_ts_allow_file_read()) {
     797        return weaverx_f_fail(__("Unable to read settings without SuperAdmin access.", 'weaver-xtreme' /*adm*/));
     798    }
     799
    796800    if (substr($contents, 0, 10) == 'WXT-V01.00' || substr($contents, 0, 10) != 'WVA-V01.00') {
    797801        $type = 'theme';
     
    803807        return weaverx_f_fail(__("Wrong theme file format version", 'weaver-xtreme' /*adm*/) . ':' . $val);    /* simple check for one of ours */
    804808    }
     809
    805810    $restore = array();
    806811    $restore = unserialize(substr($contents, 10));
  • weaverx-theme-support/tags/6.3.1/readme.txt

    r2955134 r2961795  
    1212Requires PHP: 7.2
    1313Tested up to: 6.3
    14 Stable tag: 6.3.0
     14Stable tag: 6.3.1
    1515
    1616A useful shortcode and widget collection for Weaver Xtreme
     
    7676
    7777== ChangeLog =
     78= 6.3.1 =
     79* Tweak: Additional Multisite Super Admin validation
     80
    7881= 6.3.0 =
    7982* Update: WP 6.3 compatibility
  • weaverx-theme-support/tags/6.3.1/weaverx-ts.php

    r2955134 r2961795  
    66Author: wpweaver
    77Author URI: http://weavertheme.com/about/
    8 Version: 6.3.0
     8Version: 6.3.1
    99License: GPL V3
    1010Requires PHP: 7.2
    1111Requires at least: 6.0
    1212Tested up to: 6.3
    13 Stable tag: 6.3.0
     13Stable tag: 6.3.1
    1414
    1515Weaver Xtreme Theme Support
     
    5454    strpos($theme, '/weaver-xtreme-5') !== false )) {        // only load if Weaver Xtreme is the theme
    5555
    56     define('WVRX_TS_VERSION', '6.3.0');
     56    define('WVRX_TS_VERSION', '6.3.1');
    5757    define('WVRX_TS_PAGEBUILDERS', true);
    5858
  • weaverx-theme-support/trunk/admin/admin-lib-ts.php

    r2955134 r2961795  
    794794    global $weaverx_opts_cache;    // need to mess with the cache
    795795
     796    if ( !weaverx_ts_allow_file_read()) {
     797        return weaverx_f_fail(__("Unable to read settings without SuperAdmin access.", 'weaver-xtreme' /*adm*/));
     798    }
     799
    796800    if (substr($contents, 0, 10) == 'WXT-V01.00' || substr($contents, 0, 10) != 'WVA-V01.00') {
    797801        $type = 'theme';
     
    803807        return weaverx_f_fail(__("Wrong theme file format version", 'weaver-xtreme' /*adm*/) . ':' . $val);    /* simple check for one of ours */
    804808    }
     809
    805810    $restore = array();
    806811    $restore = unserialize(substr($contents, 10));
  • weaverx-theme-support/trunk/readme.txt

    r2955134 r2961795  
    1212Requires PHP: 7.2
    1313Tested up to: 6.3
    14 Stable tag: 6.3.0
     14Stable tag: 6.3.1
    1515
    1616A useful shortcode and widget collection for Weaver Xtreme
     
    7676
    7777== ChangeLog =
     78= 6.3.1 =
     79* Tweak: Additional Multisite Super Admin validation
     80
    7881= 6.3.0 =
    7982* Update: WP 6.3 compatibility
  • weaverx-theme-support/trunk/weaverx-ts.php

    r2955134 r2961795  
    66Author: wpweaver
    77Author URI: http://weavertheme.com/about/
    8 Version: 6.3.0
     8Version: 6.3.1
    99License: GPL V3
    1010Requires PHP: 7.2
    1111Requires at least: 6.0
    1212Tested up to: 6.3
    13 Stable tag: 6.3.0
     13Stable tag: 6.3.1
    1414
    1515Weaver Xtreme Theme Support
     
    5454    strpos($theme, '/weaver-xtreme-5') !== false )) {        // only load if Weaver Xtreme is the theme
    5555
    56     define('WVRX_TS_VERSION', '6.3.0');
     56    define('WVRX_TS_VERSION', '6.3.1');
    5757    define('WVRX_TS_PAGEBUILDERS', true);
    5858
Note: See TracChangeset for help on using the changeset viewer.