summaryrefslogtreecommitdiffstats
path: root/lib/base.php
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2013-07-16 22:36:39 +0200
committerBart Visscher <bartv@thisnet.nl>2013-07-16 22:36:39 +0200
commit49fca86f3c9b135f87b842e95e5f5ad76736e52e (patch)
treed4b9b8ba129a5679d7685dfa0f6aae322e25fd15 /lib/base.php
parent7d86e262e18d931f613a6dac16afe66a70d963ac (diff)
downloadnextcloud-server-49fca86f3c9b135f87b842e95e5f5ad76736e52e.tar.gz
nextcloud-server-49fca86f3c9b135f87b842e95e5f5ad76736e52e.zip
Cleanup error generation in base.php
Diffstat (limited to 'lib/base.php')
-rw-r--r--lib/base.php28
1 files changed, 8 insertions, 20 deletions
diff --git a/lib/base.php b/lib/base.php
index 43145e1733c..1ff462819db 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -124,10 +124,9 @@ class OC {
OC::$THIRDPARTYWEBROOT = rtrim(dirname(OC::$WEBROOT), '/');
OC::$THIRDPARTYROOT = rtrim(dirname(OC::$SERVERROOT), '/');
} else {
- echo('3rdparty directory not found! Please put the ownCloud 3rdparty'
+ throw new Exception('3rdparty directory not found! Please put the ownCloud 3rdparty'
.' folder in the ownCloud folder or the folder above.'
.' You can also configure the location in the config.php file.');
- exit;
}
// search the apps folder
$config_paths = OC_Config::getValue('apps_paths', array());
@@ -150,9 +149,8 @@ class OC {
}
if (empty(OC::$APPSROOTS)) {
- echo('apps directory not found! Please put the ownCloud apps folder in the ownCloud folder'
+ throw new Exception('apps directory not found! Please put the ownCloud apps folder in the ownCloud folder'
.' or the folder above. You can also configure the location in the config.php file.');
- exit;
}
$paths = array();
foreach (OC::$APPSROOTS as $path) {
@@ -174,14 +172,11 @@ class OC {
if (file_exists(OC::$SERVERROOT . "/config/config.php")
and !is_writable(OC::$SERVERROOT . "/config/config.php")) {
$defaults = new OC_Defaults();
- $tmpl = new OC_Template('', 'error', 'guest');
- $tmpl->assign('errors', array(1 => array(
- 'error' => "Can't write into config directory 'config'",
- 'hint' => 'This can usually be fixed by '
+ OC_Template::printErrorPage(
+ "Can't write into config directory 'config'",
+ 'This can usually be fixed by '
.'<a href="' . $defaults->getDocBaseUrl() . '/server/5.0/admin_manual/installation/installation_source.html#set-the-directory-permissions" target="_blank">giving the webserver write access to the config directory</a>.'
- )));
- $tmpl->printPage();
- exit();
+ );
}
}
@@ -223,10 +218,7 @@ class OC {
header('Retry-After: 120');
// render error page
- $tmpl = new OC_Template('', 'error', 'guest');
- $tmpl->assign('errors', array(1 => array('error' => 'ownCloud is in maintenance mode')));
- $tmpl->printPage();
- exit();
+ OC_Template::printErrorPage('ownCloud is in maintenance mode');
}
}
@@ -305,11 +297,7 @@ class OC {
$error = 'Session could not be initialized. Please contact your ';
$error .= 'system administrator';
- $tmpl = new OC_Template('', 'error', 'guest');
- $tmpl->assign('errors', array(1 => array('error' => $error)));
- $tmpl->printPage();
-
- exit();
+ OC_Template::printErrorPage($error);
}
$sessionLifeTime = self::getSessionLifeTime();