Changeset 2804
- Timestamp:
- 11/12/08 19:17:20 (2 months ago)
- Files:
-
- 1 modified
-
trunk/htdocs/system/classes/usergroup.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/htdocs/system/classes/usergroup.php
r2737 r2804 177 177 // List each group member exactly once 178 178 $this->member_ids = array_unique($this->member_ids); 179 $this->update(); 179 180 180 181 EventLog::log( _t( 'User Group %1$s: Users were added to the group.', array( $this->name ) ), 'notice', 'user', 'habari' ); … … 192 193 // Remove users from group membership 193 194 $this->member_ids = array_diff( $this->member_ids, $users); 195 $this->update(); 194 196 195 197 EventLog::log( _t( 'User Group %1$s: Users were removed from the group.', array( $this->name ) ), 'notice', 'user', 'habari' );
