Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAtul Pratap Singh <atulpratapsingh05@gmail.com>2012-04-22 14:53:54 +0400
committerMarc Delisle <marc@infomarc.info>2012-04-22 14:53:54 +0400
commit00ca8581815e412ab952181a29984ca96cb034d6 (patch)
tree7056ba2b9f8f082cf02a35abbfa5b887934f1a8b /tbl_row_action.php
parentbdd4fbb9f944788eebe53dbed535d698cb0d7b37 (diff)
Patch #3500882 Fixing checkbox behaviour while editing identical rows
Diffstat (limited to 'tbl_row_action.php')
-rw-r--r--tbl_row_action.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tbl_row_action.php b/tbl_row_action.php
index d8d3a97ea1..bd9309bb10 100644
--- a/tbl_row_action.php
+++ b/tbl_row_action.php
@@ -69,7 +69,7 @@ if (!empty($submit_mult)) {
// indicating WHERE clause. Then we build the array which is used
// for the tbl_change.php script.
$where_clause = array();
- foreach ($_REQUEST['rows_to_delete'] as $i_where_clause => $del_query) {
+ foreach ($_REQUEST['rows_to_delete'] as $i => $i_where_clause) {
$where_clause[] = urldecode($i_where_clause);
}
@@ -86,7 +86,7 @@ if (!empty($submit_mult)) {
// indicating WHERE clause. Then we build the array which is used
// for the tbl_change.php script.
$where_clause = array();
- foreach ($_REQUEST['rows_to_delete'] as $i_where_clause => $del_query) {
+ foreach ($_REQUEST['rows_to_delete'] as $i => $i_where_clause) {
$where_clause[] = urldecode($i_where_clause);
}