2010-04-14 Sergio Martin <sergio.martin@artica.es>
* godmode/users/user_list.php: fixed bug 2987177. Wrong index was associated with the delete icon in the users list. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2564 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
86257bcb8a
commit
6e98d62e2d
|
@ -1,3 +1,8 @@
|
|||
2010-04-14 Sergio Martin <sergio.martin@artica.es>
|
||||
|
||||
* godmode/users/user_list.php: fixed bug 2987177. Wrong index was associated
|
||||
with the delete icon in the users list.
|
||||
|
||||
2010-04-14 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* include/functions_db.php: fixed bug in the function "get_db_value_filter"
|
||||
|
|
|
@ -116,7 +116,7 @@ foreach ($info as $user_id => $user_info) {
|
|||
$data[4] = print_string_substr ($user_info["comments"], 24, true);
|
||||
|
||||
if ($config["admin_can_delete_user"]) {
|
||||
$data[5] = print_input_image ("delete_user", "images/cross.png", $row["id_usuario"], 'border:0px;', true); //Delete user button
|
||||
$data[5] = print_input_image ("delete_user", "images/cross.png", $user_info["id_user"], 'border:0px;', true); //Delete user button
|
||||
} else {
|
||||
$data[5] = ''; //Delete button not in this mode
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue