Ignore:
Timestamp:
Sep 18, 2005, 12:22:22 AM (19 years ago)
Author:
plg
Message:
  • improvement: add information about how to use an external table for users
  • bug fixed: uses user configuration fields for filtering in admin/user_list
  • bug fixed: don't try to create feeds automatically during sync_users (when line in user_infos is missing)
  • bug fixed: create_user_infos function gives status admin if user id matches $confwebmaster_id
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/user_list.php

    r862 r865  
    679679    LEFT JOIN '.USER_GROUP_TABLE.' AS ug
    680680      ON u.'.$conf['user_fields']['id'].' = ug.user_id
    681   WHERE id != '.$conf['guest_id'];
     681  WHERE u.'.$conf['user_fields']['id'].' != '.$conf['guest_id'];
    682682if (isset($filter['username']))
    683683{
    684684  $query.= '
    685     AND username LIKE \''.$filter['username'].'\'';
     685  AND u.'.$conf['user_fields']['username'].' LIKE \''.$filter['username'].'\'';
    686686}
    687687if (isset($filter['group']))
Note: See TracChangeset for help on using the changeset viewer.