1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-08 15:47:00 +02:00

Fix sid function

This commit is contained in:
Jakub Vrana
2010-12-29 18:15:42 +01:00
parent 29d7d6ce52
commit 876af58944

View File

@@ -165,7 +165,11 @@ function ini_bool($ini) {
* @return bool
*/
function sid() {
return (SID && !($_COOKIE && ini_bool("session.use_cookies"))); // $_COOKIE - don't pass SID with permanent login
static $return;
if (!isset($return)) { // restart_session() defines SID
$return = (SID && !($_COOKIE && ini_bool("session.use_cookies"))); // $_COOKIE - don't pass SID with permanent login
}
return $return;
}
/** Shortcut for $connection->quote($string)