Changeset 846 in subversion


Ignore:
Timestamp:
Oct 2, 2007 2:59:08 AM (6 years ago)
Author:
thomasb
Message:

Fix loading of next messages after moving/deleting (#1484307)

Location:
trunk/roundcubemail
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/program/steps/mail/move_del.inc

    r573 r846  
    1919 
    2020*/ 
     21 
     22// count pages before changing anything 
     23$old_count = $IMAP->messagecount(); 
     24$old_pages = ceil($old_count / $IMAP->page_size); 
    2125 
    2226// move messages 
     
    7983 
    8084// add new rows from next page (if any) 
    81 if ($_POST['_from']!='show' && $pages>1 && $IMAP->list_page < $pages) 
     85if ($_POST['_from']!='show' && $old_pages>1 && $IMAP->list_page < $old_pages) 
    8286{ 
    8387  $sort_col   = isset($_SESSION['sort_col'])   ? $_SESSION['sort_col']   : $CONFIG['message_sort_col']; 
  • trunk/roundcubemail/skins/default/mail.css

    r840 r846  
    283283} 
    284284 
    285 #mailboxlist li.selected 
     285#mailboxlist li.selected, 
     286#mailboxlist li.droptarget li.selected 
    286287{ 
    287288  background-color: #929292; 
Note: See TracChangeset for help on using the changeset viewer.