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:
authorMichal Čihař <michal@cihar.com>2016-05-23 10:21:33 +0300
committerMichal Čihař <michal@cihar.com>2016-05-23 10:21:33 +0300
commit5bb7349e0d4d7d3a8e238f9a529cca981a27c270 (patch)
tree71387cbe1de00cb832bbdfdf5440f3e408ed10af /tbl_row_action.php
parent49a1db045e4f3459941b229bf74d37884df27c8a (diff)
parentb061096abd992801fbbd805ef6ff74e627528780 (diff)
Merge branch 'QA_4_6'
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 876dcb2af1..067945a224 100644
--- a/tbl_row_action.php
+++ b/tbl_row_action.php
@@ -86,7 +86,7 @@ if (!empty($submit_mult)) {
&& is_array($_REQUEST['rows_to_delete'])
) {
foreach ($_REQUEST['rows_to_delete'] as $i => $i_where_clause) {
- $where_clause[] = urldecode($i_where_clause);
+ $where_clause[] = $i_where_clause;
}
}
$active_page = 'tbl_change.php';
@@ -106,7 +106,7 @@ if (!empty($submit_mult)) {
&& is_array($_REQUEST['rows_to_delete'])
) {
foreach ($_REQUEST['rows_to_delete'] as $i => $i_where_clause) {
- $where_clause[] = urldecode($i_where_clause);
+ $where_clause[] = $i_where_clause;
}
}
$active_page = 'tbl_export.php';