$SESSION->bulk_susers = array_diff($SESSION->bulk_susers, $SESSION->bulk_ausers);
}
} else if(@$data->removesel) {
- if(!empty($data->ausers)) {
- $SESSION->bulk_susers = array_diff($SESSION->bulk_susers, array_values($data->ausers));
+ if(!empty($data->susers)) {
+ $SESSION->bulk_susers = array_diff($SESSION->bulk_susers, array_values($data->susers));
}
} else if(@$data->deletesel) {
if(!empty($data->susers)) {
$string['addall'] = 'Add all available users';
$string['addsel'] = 'Add selected available users';
$string['removeall'] = 'Remove all available users';
-$string['removesel'] = 'Remove selected available users';
+$string['removesel'] = 'Remove selected users';
$string['deleteall'] = 'Clear all users';
$string['deletesel'] = 'Clear selected users';
$string['available'] = 'Available';
<ul>
<li>Add selected available users - adds selected users from the Available list (on the left) to the Selected list (on the right).</li>
<li>Add all available users - adds all users from the Available list (on the left) to the Selected list (on the right).</li>
-<li>Remove selected available users - removes selected users from the Available list (on the left) from the Selected list (on the right).</li>
+<li>Remove selected users - removes selected users from the Selected list (on the right).</li>
<li>Remove all available users - removes all users from the Available list (on the left) from the Selected list (on the right).</li>
<li>Clear selected users - removes selected users from the Selected list (on the right).</li>
<li>Clear all users - removes all users from the Selected list (on the right).</li>