diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2014-04-08 10:04:53 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2014-04-08 10:04:53 +0200 |
commit | f0c94a3dc308d22f3e79fd4df3f1b2016c14e1c0 (patch) | |
tree | fea1456415f76d53ba65180907c0859f60c75ec8 /program/include | |
parent | 0f48e6e660cb5aa0d7bfdf11967b648c78cb64f9 (diff) |
Don't display error when moving a message to the same folder it already resides
Diffstat (limited to 'program/include')
-rw-r--r-- | program/include/rcmail.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/include/rcmail.php b/program/include/rcmail.php index 87cf99237..81fe7d797 100644 --- a/program/include/rcmail.php +++ b/program/include/rcmail.php @@ -2022,8 +2022,8 @@ class rcmail extends rcube // message UID (or comma-separated list of IDs) is provided in // the form of <ID>-<MBOX>[,<ID>-<MBOX>]* - $_uid = $uids ?: get_input_value('_uid', RCUBE_INPUT_GPC); - $_mbox = $mbox ?: (string)get_input_value('_mbox', RCUBE_INPUT_GPC); + $_uid = $uids ?: rcube_utils::get_input_value('_uid', RCUBE_INPUT_GPC); + $_mbox = $mbox ?: (string)rcube_utils::get_input_value('_mbox', RCUBE_INPUT_GPC); if (is_array($uid)) { return $uid; |