From 5e07597fce955418f4ba78acddbd04ab5289d701 Mon Sep 17 00:00:00 2001 From: tokul Date: Sat, 10 Sep 2005 11:13:56 +0000 Subject: [PATCH] style fix git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@10085 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/db_prefs.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/functions/db_prefs.php b/functions/db_prefs.php index 63db4a26..24da7ed9 100644 --- a/functions/db_prefs.php +++ b/functions/db_prefs.php @@ -296,7 +296,8 @@ class dbPrefs { */ if (strlen($user) > $this->user_size) { $this->error = "Oversized username value." - ." User's preferences can't be saved. See doc/db-backend.txt troubleshooting documentation."; + ." Your preferences can't be saved." + ." See doc/db-backend.txt or contact your system administrator."; /** * Debugging function. Can be used to log all issues that trigger @@ -313,7 +314,8 @@ class dbPrefs { */ if (strlen($key) > $this->key_size) { $err_msg = "Oversized user's preference key." - ." Some user preferences are not saved. See doc/db-backend.txt troubleshooting documentation."; + ." Some preferences were not saved." + ." See doc/db-backend.txt or contact your system administrator."; // error is not fatal. Only some preference is not saved. trigger_error($err_msg,E_USER_WARNING); return false; @@ -323,7 +325,8 @@ class dbPrefs { */ if (strlen($value) > $this->val_size) { $err_msg = "Oversized user's preference value." - ." Some user preferences are not saved. See doc/db-backend.txt troubleshooting documentation."; + ." Some preferences were not saved." + ." See doc/db-backend.txt or contact your system administrator."; // error is not fatal. Only some preference is not saved. trigger_error($err_msg,E_USER_WARNING); return false; -- 2.25.1