Ignore:
Timestamp:
Oct 5, 2003, 12:42:54 PM (21 years ago)
Author:
z0rglub
Message:

Checking favorites after modifying group permissions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/group_perm.php

    r146 r170  
    5252    }
    5353  }
     54  // checking users favorites
     55  $query = 'SELECT id';
     56  $query.= ' FROM '.PREFIX_TABLE.'users';
     57  $query.= ';';
     58  $result = mysql_query( $query );
     59  while ( $row = mysql_fetch_array( $result ) )
     60  {
     61    check_favorites( $row['id'] );
     62  }
     63  // confirmation display
    5464  $vtp->addSession( $sub, 'confirmation' );
    5565  $url = './admin.php?page=group_list';
Note: See TracChangeset for help on using the changeset viewer.