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:
authorMarc Delisle <marc@infomarc.info>2009-05-04 20:05:24 +0400
committerMarc Delisle <marc@infomarc.info>2009-05-04 20:05:24 +0400
commit55a516e39ce487b1b409ac3a23181422dafde3b3 (patch)
treef90cf7518dbda37a436a3ce0122b52eea9ee074a /tbl_row_action.php
parent0214a6fe9d671f5dcc24468f3a5dd01b139a8f07 (diff)
patch #2745215 [edit] Multi-row change with "]" improved
Diffstat (limited to 'tbl_row_action.php')
-rw-r--r--tbl_row_action.php8
1 files changed, 0 insertions, 8 deletions
diff --git a/tbl_row_action.php b/tbl_row_action.php
index 912898b1bb..c2204a509d 100644
--- a/tbl_row_action.php
+++ b/tbl_row_action.php
@@ -83,14 +83,10 @@ if (!empty($submit_mult)) {
// checkbox, we use the index of it as the
// indicating primary key. Then we built the array which is used for
// the tbl_change.php script.
- /**
- * urldecode should not be needed here
$primary_key = array();
foreach ($_REQUEST['rows_to_delete'] as $i_primary_key => $del_query) {
$primary_key[] = urldecode($i_primary_key);
}
- */
- $primary_key = array_keys($_REQUEST['rows_to_delete']);
$active_page = 'tbl_change.php';
include './tbl_change.php';
@@ -105,14 +101,10 @@ if (!empty($submit_mult)) {
// checkbox, we use the index of it as the
// indicating primary key. Then we built the array which is used for
// the tbl_change.php script.
- /**
- * urldecode should not be needed here
$primary_key = array();
foreach ($_REQUEST['rows_to_delete'] as $i_primary_key => $del_query) {
$primary_key[] = urldecode($i_primary_key);
}
- */
- $primary_key = array_keys($_REQUEST['rows_to_delete']);
$active_page = 'tbl_export.php';
include './tbl_export.php';