summaryrefslogtreecommitdiffstats
path: root/lib/base.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/base.php')
-rw-r--r--lib/base.php12
1 files changed, 11 insertions, 1 deletions
diff --git a/lib/base.php b/lib/base.php
index e9451c45b61..520c12d4df1 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -125,7 +125,17 @@ if( OC_Config::getValue( "forcessl", false )){
}
}
-$error=(count(OC_Util::checkServer())>0);
+$errors=OC_Util::checkServer();
+$error=(count($errors)>0);
+
+if($error) {
+ $tmpl = new OC_Template( '', 'error', 'guest' );
+ $tmpl->assign('errors',$errors);
+ $tmpl->printPage();
+ exit;
+}
+
+
// User and Groups
if( !OC_Config::getValue( "installed", false )){