mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-24 12:07:23 +08:00
fix warning: Undefined array key
This commit is contained in:
+1
-1
@@ -52,7 +52,7 @@ if (@ini_get('output_handler') == 'ob_gzhandler' AND @ob_get_length() !== false)
|
||||
header('Content-Encoding:');
|
||||
}
|
||||
*/
|
||||
if ($_COOKIE["c_secure_tracker_ssl"] == base64("yeah"))
|
||||
if (isset($_COOKIE["c_secure_tracker_ssl"]) && $_COOKIE["c_secure_tracker_ssl"] == base64("yeah"))
|
||||
$tracker_ssl = true;
|
||||
else
|
||||
$tracker_ssl = false;
|
||||
|
||||
Reference in New Issue
Block a user