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:
authorSebastian Mendel <cybot_tm@users.sourceforge.net>2007-04-01 13:26:14 +0400
committerSebastian Mendel <cybot_tm@users.sourceforge.net>2007-04-01 13:26:14 +0400
commitb2f3ae5fcfdd8aa881c7abf20ffccdfc583a518a (patch)
tree651e3e136e5fe5c6f9de5ddd0aa1440c92b7a6dd /tbl_row_action.php
parent0848d0f654d08a5e2f04fd9ab7862825d8b35d45 (diff)
make $sql_query persistent (init it, never unset it, always assume it is set)
Diffstat (limited to 'tbl_row_action.php')
-rw-r--r--tbl_row_action.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_row_action.php b/tbl_row_action.php
index 98a6d4a6a5..abc5f849f3 100644
--- a/tbl_row_action.php
+++ b/tbl_row_action.php
@@ -127,7 +127,7 @@ if (!empty($submit_mult)) {
* Show result of multi submit operation
*/
// sql_query is not set when user does not confirm multi-delete
- if ((!empty($submit_mult) || isset($mult_btn)) && isset($sql_query)) {
+ if ((!empty($submit_mult) || isset($mult_btn)) && ! empty($sql_query)) {
$disp_message = $strSuccess;
$disp_query = $sql_query;
}