Log the session exception when ownCloud is not installed

This commit is contained in:
Tom Needham 2013-10-11 16:45:58 +01:00
parent 5c664704a3
commit cb110c0679
1 changed files with 6 additions and 3 deletions

View File

@ -304,9 +304,12 @@ class OC {
self::$session = new \OC\Session\Internal(OC_Util::getInstanceId());
// if session cant be started break with http 500 error
} catch (Exception $e) {
if(!OC_Config::getValue('installed')) {
error_log('Session could not be initialized');
} else {
OC_Log::write('core', 'Session could not be initialized',
OC_Log::ERROR);
}
header('HTTP/1.1 500 Internal Server Error');
OC_Util::addStyle("styles");
$error = 'Session could not be initialized. Please contact your ';