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>2014-05-09 18:35:42 +0400
committerMichal Čihař <michal@cihar.com>2014-05-09 18:35:42 +0400
commit55ed816931ce1b0ac0967a8201656cb5847bd40c (patch)
tree24b7fcd96ee882d90ed04efca53224847ecc4fbc /db_qbe.php
parenta5f338fe2f58aa6dcebfd4f55fc6d98023e946bd (diff)
Initialize variable (it is unset when saving of queries is disabled)
Signed-off-by: Michal Čihař <michal@cihar.com>
Diffstat (limited to 'db_qbe.php')
-rw-r--r--db_qbe.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/db_qbe.php b/db_qbe.php
index 8735b10630..b70134d481 100644
--- a/db_qbe.php
+++ b/db_qbe.php
@@ -20,6 +20,7 @@ $response = PMA_Response::getInstance();
$cfgRelation = PMA_getRelationsParam();
$savedSearchList = array();
+$savedSearch = null;
$currentSearchId = null;
if ($cfgRelation['savedsearcheswork']) {
include 'libraries/SavedSearches.class.php';