Merge pull request #5658 from owncloud/session-error-full-sentence

[Trivial] Make "Please contact your system administrator" a full sentence.
This commit is contained in:
Morris Jobke 2013-11-01 05:08:19 -07:00
commit eb0ecaa13c
1 changed files with 1 additions and 1 deletions

View File

@ -313,7 +313,7 @@ class OC {
header('HTTP/1.1 500 Internal Server Error');
OC_Util::addStyle("styles");
$error = 'Session could not be initialized. Please contact your ';
$error .= 'system administrator';
$error .= 'system administrator.';
OC_Template::printErrorPage($error);
}