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)