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:53 +0300
committerMarc Delisle <marc@infomarc.info>2015-03-05 16:36:53 +0300
commita3704ecb1dfada0f21944f2ff300484859bdf795 (patch)
tree69113208c0b19df50428d4cf790b7704834cf1c2
parent86d8f259d21e170c0faf0ddd585cc545ac92b0d6 (diff)
parent22c02499d751fb05217e689c5ac4ba175b228413 (diff)
Merge branch 'QA_4_3' into QA_4_4
-rw-r--r--ChangeLog1
-rw-r--r--db_qbe.php2
2 files changed, 2 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index c0d7ac4b08..8e0491986f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -68,6 +68,7 @@ explanation
4.3.12.0 (not yet released)
- bug #4746 Right-aligned columns have left-aligned header
- bug #4779 PMA_Util::parseEnumSetValues fails on enums with UTF-8 values
+- bug Undefined index savedsearcheswork
4.3.11.1 (2015-03-04)
- bug [security] Risk of BREACH attack, see PMASA-2015-1
diff --git a/db_qbe.php b/db_qbe.php
index 94a9625d12..55df65dff9 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();