Updated lang.php to work

This commit is contained in:
jengo 2000-12-15 17:26:51 +00:00
parent 806f94b4eb
commit b29f5b637e

View File

@ -14,11 +14,15 @@
if (! $included) { if (! $included) {
$phpgw_info["flags"] = array("noheader" => True, "nonavbar" => True, "currentapp" => "home", "noapi" => True); $phpgw_info["flags"] = array("noheader" => True, "nonavbar" => True, "currentapp" => "home", "noapi" => True);
include("./inc/functions.inc.php");
include("../header.inc.php"); include("../header.inc.php");
// Authorize the user to use setup app and load the database // Authorize the user to use setup app and load the database
include("./inc/setup_auth.inc.php"); // Does not return unless user is authorized
//Does not return unless user is authorized if (!auth()){
Header("Location: index.php");
exit;
}
loaddb();
echo "<html><head><title>phpGroupWare Setup</title></head>\n"; echo "<html><head><title>phpGroupWare Setup</title></head>\n";
echo "<body bgcolor='#ffffff'>\n"; echo "<body bgcolor='#ffffff'>\n";