style fix
authortokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 10 Sep 2005 11:13:56 +0000 (11:13 +0000)
committertokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 10 Sep 2005 11:13:56 +0000 (11:13 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@10085 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/db_prefs.php

index 63db4a26186c6bec9112e4ea56e7fb0148db4a43..24da7ed97efa45fb03098c9e72ff7e22bb27d1a5 100644 (file)
@@ -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;