diff options
author | thomascube <thomas@roundcube.net> | 2006-03-20 22:38:10 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-03-20 22:38:10 +0000 |
commit | ad57b3ab3ab6ac5f7e41580a96bf03900a52e5b2 (patch) | |
tree | 1a951b97e0bf389be2a4db6031f5bd0b958fb523 | |
parent | 8c2e58b42e89ca0216307553a906c2ca776c44f8 (diff) |
Minor improvements and bugfixes (see changelog)
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | program/steps/settings/save_identity.inc | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -3,6 +3,7 @@ CHANGELOG RoundCube Webmail 2006/03/20 ---------- +- Avoid error message when saving an unchanged identity (Bug #1429510) - Fixed hard-coded cols selection for sent folder (Bug #1354586) - Enable some HTML links for use with "open in new window" or "save target" - Check meta-key instead of ctrl on Macs diff --git a/program/steps/settings/save_identity.inc b/program/steps/settings/save_identity.inc index f5780de4b..f099ea5f7 100644 --- a/program/steps/settings/save_identity.inc +++ b/program/steps/settings/save_identity.inc @@ -80,7 +80,7 @@ if ($_POST['_iid']) // ... } } - else + else if ($DB->is_error()) { // show error message show_message('errorsaving', 'error'); |