Plugin Directory

Changeset 2812304


Ignore:
Timestamp:
11/04/2022 07:22:51 PM (3 years ago)
Author:
uqrate
Message:

v1.0.0 build 2022-11-04T19.03.42Z to trunk

Location:
uqrate/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • uqrate/trunk/class.core.php

    r2793714 r2812304  
    108108    }
    109109    protected static function reqURI() {
    110         return sanitize_url( $_SERVER['REQUEST_URI'] );
     110        return sanitize_url(strtolower( $_SERVER['REQUEST_URI'] ));
    111111    }
    112112    private static function okayCommentsSection() {
  • uqrate/trunk/class.sync.php

    r2807073 r2812304  
    246246        $mid = 'UUID_NAME_FAIL';
    247247        if ( ! self::GetChnKey() ) return false;
    248         $cid = self::cfg('chn_key')['chn_id'];
     248        $cid = strtolower( self::cfg('chn_key')['chn_id'] );
    249249        $uri = self::reqURI();
    250250        if ( ! ( $cid && $uri ) ) {
  • uqrate/trunk/uqrate.php

    r2807073 r2812304  
    2929define( 'UQRATE_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
    3030$_UQRATE_ENV = [
    31     'build'                 => "2022-10-28T00.34.47Z",
     31    'build'                 => "2022-11-04T19.03.42Z",
    3232    'mode_debug'            => false,
    3333    'mode_local'            => false,
Note: See TracChangeset for help on using the changeset viewer.