Changed unset($USER) to $USER=NULL ... as unset can cause problems with PHP 4.1

This commit is contained in:
martin
2002-01-24 07:20:40 +00:00
parent 873f20962d
commit 566bb7086e
+1 -1
View File
@@ -4,7 +4,7 @@
require("../config.php");
add_to_log("Logged out");
unset($USER);
$USER = NULL;
redirect($HTTP_REFERER);
exit;