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:
authorHugues Peccatte <hugues.peccatte@gmail.com>2014-09-28 22:53:01 +0400
committerHugues Peccatte <hugues.peccatte@gmail.com>2014-09-28 22:53:01 +0400
commit3de88162ff628a50d220d559954362c21028cc65 (patch)
treea467d672686ca88369e27b04964950b98928b64f /tbl_change.php
parent38eb5948a0e19991620b7d9c47c1dc0f284e291a (diff)
Replace PMA_String uses by mb_* calls.
Remove part of unused variables. Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
Diffstat (limited to 'tbl_change.php')
-rw-r--r--tbl_change.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_change.php b/tbl_change.php
index c0f468d355..2bdf67733a 100644
--- a/tbl_change.php
+++ b/tbl_change.php
@@ -47,7 +47,7 @@ require_once 'libraries/file_listing.lib.php';
* (at this point, $GLOBALS['goto'] will be set but could be empty)
*/
if (empty($GLOBALS['goto'])) {
- if ($GLOBALS['PMA_String']->strlen($table)) {
+ if (/*overload*/mb_strlen($table)) {
// avoid a problem (see bug #2202709)
$GLOBALS['goto'] = 'tbl_sql.php';
} else {