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:
authorChristian Foellmann <foellmann@foe-services.de>2015-01-07 22:30:46 +0300
committerChristian Foellmann <foellmann@foe-services.de>2015-01-07 22:30:46 +0300
commit72f864ff50d01b8bc18904db7a6ba4fa32c44783 (patch)
tree5e21bb2e65452081461e762eab72e5d8c577dec5 /libraries/RecentFavoriteTable.class.php
parent170cb05f4eec4322303658108f9eea6e55163e50 (diff)
UPDATE 4.3.64.3.6
Diffstat (limited to 'libraries/RecentFavoriteTable.class.php')
-rw-r--r--libraries/RecentFavoriteTable.class.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/libraries/RecentFavoriteTable.class.php b/libraries/RecentFavoriteTable.class.php
index 2cf934b3ca..8582cef5f6 100644
--- a/libraries/RecentFavoriteTable.class.php
+++ b/libraries/RecentFavoriteTable.class.php
@@ -381,8 +381,8 @@ class PMA_RecentFavoriteTable
private function _getPmaTable()
{
$cfgRelation = PMA_getRelationsParam();
- if (/*overload*/mb_strlen($cfgRelation['db'])
- && /*overload*/mb_strlen($cfgRelation[$this->_tableType])
+ if (! empty($cfgRelation['db'])
+ && ! empty($cfgRelation[$this->_tableType])
) {
return PMA_Util::backquote($cfgRelation['db']) . "."
. PMA_Util::backquote($cfgRelation[$this->_tableType]);