From 6e98d62e2d14843324b77c2bf9bede5190ee6daf Mon Sep 17 00:00:00 2001 From: zarzuelo Date: Wed, 14 Apr 2010 15:51:48 +0000 Subject: [PATCH] 2010-04-14 Sergio Martin * 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 --- pandora_console/ChangeLog | 5 +++++ pandora_console/godmode/users/user_list.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 1ab7a9421d..33a0107006 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2010-04-14 Sergio Martin + + * 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 * include/functions_db.php: fixed bug in the function "get_db_value_filter" diff --git a/pandora_console/godmode/users/user_list.php b/pandora_console/godmode/users/user_list.php index 4ba8db6a68..cfb0311b56 100644 --- a/pandora_console/godmode/users/user_list.php +++ b/pandora_console/godmode/users/user_list.php @@ -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 }