Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-11-10 11:14:52 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2013-11-10 11:14:52 +0400
commit841c62208551425361f311969260e95eded9101a (patch)
tree3230ef5998b0c94ac976399dc3bbf8077bd21548
parenta8f6a2446c37b59a9406f55f43ad76248293e83f (diff)
parent4f24d4ba015bb442e86449c0ebde51352fa037ab (diff)
Merge pull request #5687 from owncloud/fixing-5659-master
display the exception instead of meaningless message
-rw-r--r--lib/base.php11
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();