diff options
author | Takika <taki@alkoholista.hu> | 2014-06-30 17:06:46 +0200 |
---|---|---|
committer | Takika <taki@alkoholista.hu> | 2014-06-30 17:06:46 +0200 |
commit | 4104233555a6bddbc76be7529aaac34d1758514c (patch) | |
tree | 0edf665551db91a236ad4e37d723254be3e3485b | |
parent | 9fa8368b01b9cee5fcc97d9c267e2308296501e2 (diff) |
Typo fix
Missing $ added in get_uids call
-rw-r--r-- | program/steps/mail/move_del.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/move_del.inc b/program/steps/mail/move_del.inc index 81d476b2e..4c57d6fa9 100644 --- a/program/steps/mail/move_del.inc +++ b/program/steps/mail/move_del.inc @@ -37,7 +37,7 @@ if ($RCMAIL->action == 'move' && !empty($_POST['_uid']) && strlen($_POST['_targe $trash = $RCMAIL->config->get('trash_mbox'); $success = true; - foreach (rcmail::get_uids(null, null, multifolder) as $mbox => $uids) { + foreach (rcmail::get_uids(null, null, $multifolder) as $mbox => $uids) { if ($mbox === $target) { $count += count($uids); } |