mirror of
https://github.com/vrana/adminer.git
synced 2025-08-10 00:28:34 +02:00
Secure parameter must be bool in some PHP versions
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@1280 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
@@ -46,7 +46,7 @@ if (!isset($_SERVER["REQUEST_URI"])) {
|
||||
session_write_close(); // disable session.auto_start
|
||||
@ini_set("session.use_trans_sid", false); // protect links in export, @ - may be disabled
|
||||
session_name("adminer_sid"); // use specific session name to get own namespace
|
||||
$params = array(0, preg_replace('~\\?.*~', '', $_SERVER["REQUEST_URI"]), "", $_SERVER["HTTPS"]);
|
||||
$params = array(0, preg_replace('~\\?.*~', '', $_SERVER["REQUEST_URI"]), "", (bool) $_SERVER["HTTPS"]);
|
||||
if (version_compare(PHP_VERSION, '5.2.0') >= 0) {
|
||||
$params[] = true; // HttpOnly
|
||||
}
|
||||
|
Reference in New Issue
Block a user