Changeset 992


Ignore:
Timestamp:
Dec 29, 2005, 11:40:32 AM (18 years ago)
Author:
nikrou
Message:

Correction du bug 238

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/branch-1_5/admin/user_list.php

    r932 r992  
    262262        sprintf(
    263263          l10n('%d users deleted'),
    264           count($collection)
     264          count($collection) 
    265265          )
    266266        );
     267      $_values = array_values($collection);
     268      foreach ($page['filtered_users'] as $_key => $_value)
     269      {
     270        if (in_array($_value['id'],$_values)) {
     271          unset($page['filtered_users'][$_key]);
     272        }
     273      }
    267274    }
    268275    else
Note: See TracChangeset for help on using the changeset viewer.