|
@@ -74,6 +74,14 @@ if ((bool) ini_get('register_globals') &&
|
|
global $null;
|
|
global $null;
|
|
$null = NULL;
|
|
$null = NULL;
|
|
|
|
|
|
|
|
+/**
|
|
|
|
+ * The global $server_os variable will be "windows" if
|
|
|
|
+ * we are working in a Windows environment or "*nix"
|
|
|
|
+ * otherwise.
|
|
|
|
+ */
|
|
|
|
+global $server_os;
|
|
|
|
+if (DIRECTORY_SEPARATOR == '\\') $server_os = 'windows'; else $server_os = '*nix';
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* [#1518885] session.use_cookies = off breaks SquirrelMail
|
|
* [#1518885] session.use_cookies = off breaks SquirrelMail
|
|
*
|
|
*
|