mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-30 01:05:39 +02:00
Massive operation profile actions - users select box now is ordered by user_id(primary name) - #92
This commit is contained in:
parent
472d484583
commit
1dce7623f8
@ -103,8 +103,8 @@ $data[2] = '<span id="alerts_loading" class="invisible">';
|
|||||||
$data[2] .= html_print_image('images/spinner.png', true);
|
$data[2] .= html_print_image('images/spinner.png', true);
|
||||||
$data[2] .= '</span>';
|
$data[2] .= '</span>';
|
||||||
$users_profiles = "";
|
$users_profiles = "";
|
||||||
|
$users_order = array('field' => 'full_name', 'order' => 'ASC');
|
||||||
$data[2] .= html_print_select (users_get_info(), 'users_id[]', '', '', '',
|
$data[2] .= html_print_select (users_get_info($users_order), 'users_id[]', '', '', '',
|
||||||
'', true, true, true, '', false, 'width: 100%');
|
'', true, true, true, '', false, 'width: 100%');
|
||||||
|
|
||||||
|
|
||||||
|
@ -117,8 +117,8 @@ $data[2] = '<span id="users_loading" class="invisible">';
|
|||||||
$data[2] .= html_print_image('images/spinner.png', true);
|
$data[2] .= html_print_image('images/spinner.png', true);
|
||||||
$data[2] .= '</span>';
|
$data[2] .= '</span>';
|
||||||
$users_profiles = "";
|
$users_profiles = "";
|
||||||
|
$users_order = array('field' => 'id_user', 'order' => 'ASC');
|
||||||
$data[2] .= html_print_select (array(), 'users_id[]', '', '', '',
|
$data[2] .= html_print_select (users_get_info($users_order), 'users_id[]', '', '', '',
|
||||||
'', true, true, true, '', false, 'width: 100%');
|
'', true, true, true, '', false, 'width: 100%');
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user