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:
Diffstat (limited to 'libraries/plugins/auth/AuthenticationCookie.class.php')
-rw-r--r--libraries/plugins/auth/AuthenticationCookie.class.php7
1 files changed, 2 insertions, 5 deletions
diff --git a/libraries/plugins/auth/AuthenticationCookie.class.php b/libraries/plugins/auth/AuthenticationCookie.class.php
index a53f511685..f154c531dc 100644
--- a/libraries/plugins/auth/AuthenticationCookie.class.php
+++ b/libraries/plugins/auth/AuthenticationCookie.class.php
@@ -590,15 +590,12 @@ class AuthenticationCookie extends AuthenticationPlugin
// URL where to go:
$redirect_url = $cfg['PmaAbsoluteUri'] . 'index.php';
- /** @var PMA_String $pmaString */
- $pmaString = $GLOBALS['PMA_String'];
-
// any parameters to pass?
$url_params = array();
- if ($pmaString->strlen($GLOBALS['db'])) {
+ if (/*overload*/mb_strlen($GLOBALS['db'])) {
$url_params['db'] = $GLOBALS['db'];
}
- if ($pmaString->strlen($GLOBALS['table'])) {
+ if (/*overload*/mb_strlen($GLOBALS['table'])) {
$url_params['table'] = $GLOBALS['table'];
}
// any target to pass?