Stop using session_unregister()
authorpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 8 May 2009 17:53:37 +0000 (17:53 +0000)
committerpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 8 May 2009 17:53:37 +0000 (17:53 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@13662 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/global.php

index 75867cd417aa790b267eb38c025e3adc6e0349e6..4e81a0762f7be5cc3680ba5c1e195385731c3b1f 100644 (file)
@@ -155,7 +155,9 @@ function sqsession_unregister ($name) {
 
     unset($_SESSION[$name]);
 
-    session_unregister("$name");
+    // starts throwing warnings in PHP 5.3.0 and is
+    // removed in PHP 6 and is redundant anyway
+    //session_unregister("$name");
 }
 
 /**