浏览代码

After logout redirect back to the login.

Mark Crane 12 年之前
父节点
当前提交
4b7a6769b3
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      logout.php

+ 1 - 1
logout.php

@@ -32,7 +32,7 @@ include "root.php";
 	session_destroy();
 
 //redirect the user to the index page
-	header("Location: ".PROJECT_PATH."/");
+	header("Location: ".PROJECT_PATH."/login.php");
 	return;
 
 ?>