Changeset 2812304
- Timestamp:
- 11/04/2022 07:22:51 PM (3 years ago)
- Location:
- uqrate/trunk
- Files:
-
- 3 edited
-
class.core.php (modified) (1 diff)
-
class.sync.php (modified) (1 diff)
-
uqrate.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uqrate/trunk/class.core.php
r2793714 r2812304 108 108 } 109 109 protected static function reqURI() { 110 return sanitize_url( $_SERVER['REQUEST_URI']);110 return sanitize_url(strtolower( $_SERVER['REQUEST_URI'] )); 111 111 } 112 112 private static function okayCommentsSection() { -
uqrate/trunk/class.sync.php
r2807073 r2812304 246 246 $mid = 'UUID_NAME_FAIL'; 247 247 if ( ! self::GetChnKey() ) return false; 248 $cid = s elf::cfg('chn_key')['chn_id'];248 $cid = strtolower( self::cfg('chn_key')['chn_id'] ); 249 249 $uri = self::reqURI(); 250 250 if ( ! ( $cid && $uri ) ) { -
uqrate/trunk/uqrate.php
r2807073 r2812304 29 29 define( 'UQRATE_PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); 30 30 $_UQRATE_ENV = [ 31 'build' => "2022-1 0-28T00.34.47Z",31 'build' => "2022-11-04T19.03.42Z", 32 32 'mode_debug' => false, 33 33 'mode_local' => false,
Note: See TracChangeset
for help on using the changeset viewer.