summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 83b280c)
raw | patch | inline | side by side (parent: 83b280c)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 22 May 2006 11:59:19 +0000 (11:59 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 22 May 2006 11:59:19 +0000 (11:59 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@3489 594d385d-05f5-0310-b6e9-bd551577e9d8
html/index.php | patch | blob | history |
diff --git a/html/index.php b/html/index.php
index e3e87e6dadb6da018115bbd878a8fa16c855b31b..ece9138c5cc7fd7b518881d782280babedddb260 100644 (file)
--- a/html/index.php
+++ b/html/index.php
/* Check if gosa.conf is accessible */
if (!is_readable(CONFIG_DIR."/gosa.conf")){
- print_red(sprintf(_("GOsa configuration %s/gosa.conf is not readable. Aborted."), CONFIG_DIR));
- echo $_SESSION['errors'];
+ echo sprintf(_("GOsa configuration %s/gosa.conf is not readable. Aborted."), CONFIG_DIR);
exit();
}
/* Check for compile directory */
if (!(is_dir($smarty->compile_dir) && is_writable($smarty->compile_dir))){
- print_red(sprintf(_("Directory '%s' specified as compile directory is not accessible!"),
- $smarty->compile_dir));
- echo $_SESSION['errors'];
+ echo sprintf(_("Directory '%s' specified as compile directory is not accessible!"),
+ $smarty->compile_dir);
exit();
}