Don't import tableve when it's not used in the code

This commit is contained in:
Jonathan Ernst
2005-02-07 23:53:46 +00:00
committed by WineHQ
parent e1c1489279
commit a3820b468d
3 changed files with 1 additions and 4 deletions

View File

@@ -5,7 +5,6 @@
include("path.php"); include("path.php");
require(BASE."include/incl.php"); require(BASE."include/incl.php");
require(BASE."include/tableve.php");
require(BASE."include/category.php"); require(BASE."include/category.php");
require(BASE."include/maintainer.php"); require(BASE."include/maintainer.php");

View File

@@ -8,13 +8,12 @@
*/ */
include("path.php"); include("path.php");
require(BASE."include/incl.php"); require(BASE."include/incl.php");
require(BASE."include/tableve.php");
require(BASE."include/category.php"); require(BASE."include/category.php");
require(BASE."include/application.php"); require(BASE."include/application.php");
if(!$_SESSION['current']->isLoggedIn()) if(!$_SESSION['current']->isLoggedIn())
{ {
errorpage("You need to be logged in to apply to be a maintainer."); errorpage("You need to be logged in to resign from being a maintainer.");
exit; exit;
} }

View File

@@ -8,7 +8,6 @@
*/ */
include("path.php"); include("path.php");
require(BASE."include/incl.php"); require(BASE."include/incl.php");
require(BASE."include/tableve.php");
require(BASE."include/category.php"); require(BASE."include/category.php");
require(BASE."include/application.php"); require(BASE."include/application.php");