diff options
author | Andreas Fischer <bantu@owncloud.com> | 2013-11-01 11:35:02 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@owncloud.com> | 2013-11-01 11:35:02 +0100 |
commit | b6bb2b26ddf800f1779b32bff09bb2d60865d08a (patch) | |
tree | d821bc11aa231a039a772815c61dc2d64ca8940a | |
parent | fad2149e3f7ec89874a759f7c31c93dd3d1e8083 (diff) | |
download | nextcloud-server-b6bb2b26ddf800f1779b32bff09bb2d60865d08a.tar.gz nextcloud-server-b6bb2b26ddf800f1779b32bff09bb2d60865d08a.zip |
Make "Please contact your system administrator" a full sentence.
-rw-r--r-- | lib/base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base.php b/lib/base.php index d29a95ecec9..69b01a44702 100644 --- a/lib/base.php +++ b/lib/base.php @@ -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); } |