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>2015-03-05 16:36:25 +0300
committerMarc Delisle <marc@infomarc.info>2015-03-05 16:36:25 +0300
commit22c02499d751fb05217e689c5ac4ba175b228413 (patch)
tree73233c353857fb5e3095de36d83bffc22f0a1b95 /db_qbe.php
parentcf97e8626e43116fc424e97acdbf317b735eb579 (diff)
Bug Undefined index savedsearcheswork
Signed-off-by: Marc Delisle <marc@infomarc.info>
Diffstat (limited to 'db_qbe.php')
-rw-r--r--db_qbe.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/db_qbe.php b/db_qbe.php
index e703a0aca4..ea8ffb3092 100644
--- a/db_qbe.php
+++ b/db_qbe.php
@@ -22,7 +22,7 @@ $cfgRelation = PMA_getRelationsParam();
$savedSearchList = array();
$savedSearch = null;
$currentSearchId = null;
-if ($cfgRelation['savedsearcheswork']) {
+if (isset($cfgRelation['savedsearcheswork']) && $cfgRelation['savedsearcheswork']) {
include 'libraries/SavedSearches.class.php';
$header = $response->getHeader();
$scripts = $header->getScripts();