diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-11-04 21:55:55 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-11-04 21:55:55 +0100 |
commit | 4f24d4ba015bb442e86449c0ebde51352fa037ab (patch) | |
tree | d5f1fe3c9dd00b9cc47ae3cc34d5588b6c3e5955 /lib/base.php | |
parent | b767bbcddacc62741e8bed585c080092448bb829 (diff) | |
download | nextcloud-server-4f24d4ba015bb442e86449c0ebde51352fa037ab.tar.gz nextcloud-server-4f24d4ba015bb442e86449c0ebde51352fa037ab.zip |
display the exception instead of meaningless message
Diffstat (limited to 'lib/base.php')
-rw-r--r-- | lib/base.php | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/lib/base.php b/lib/base.php index 4f8d97ac95d..81e0f77aa80 100644 --- a/lib/base.php +++ b/lib/base.php @@ -308,14 +308,9 @@ class OC { self::$session = new \OC\Session\Internal(OC_Util::getInstanceId()); // if session cant be started break with http 500 error } catch (Exception $e) { - OC_Log::write('core', 'Session could not be initialized. Exception message: '.$e->getMessage(), - OC_Log::ERROR); - header('HTTP/1.1 500 Internal Server Error'); - OC_Util::addStyle("styles"); - $error = 'Session could not be initialized. Please contact your '; - $error .= 'system administrator.'; - - OC_Template::printErrorPage($error); + //show the user a detailed error page + OC_Response::setStatus(OC_Response::STATUS_INTERNAL_SERVER_ERROR); + OC_Template::printExceptionErrorPage($e); } $sessionLifeTime = self::getSessionLifeTime(); |