Changeset 1c9bd8c in github


Ignore:
Timestamp:
Mar 24, 2010 4:18:12 AM (3 years ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
b1e74ac
Parents:
9224c8a
Message:
  • removed unnecessary counting
File:
1 edited

Legend:

Unmodified
Added
Removed
  • program/steps/mail/copy.inc

    r9b3fdc2 r1c9bd8c  
    3030// move messages 
    3131if (!empty($_POST['_uid']) && !empty($_POST['_target_mbox'])) { 
    32     $count = sizeof(explode(',', ($uids = get_input_value('_uid', RCUBE_INPUT_POST)))); 
     32    $uids = get_input_value('_uid', RCUBE_INPUT_POST); 
    3333    $target = get_input_value('_target_mbox', RCUBE_INPUT_POST); 
    3434    $mbox = get_input_value('_mbox', RCUBE_INPUT_POST); 
     
    3838    if (!$copied) { 
    3939        // send error message 
    40         if ($_POST['_from'] != 'show') 
    41           $OUTPUT->command('list_mailbox'); 
     40            if ($_POST['_from'] != 'show') 
     41            $OUTPUT->command('list_mailbox'); 
    4242        $OUTPUT->show_message('errorcopying', 'error'); 
    4343        $OUTPUT->send(); 
Note: See TracChangeset for help on using the changeset viewer.