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:
authorMichal Čihař <michal@cihar.com>2015-12-21 14:14:12 +0300
committerMichal Čihař <michal@cihar.com>2016-01-04 18:35:28 +0300
commit55b317c69964991d1204ade1eb3d4c69de120683 (patch)
treee9c170222ff3a41efa744f18d8a1979eb71e7949 /export.php
parent41caf7bafa2fe4f5de2560e6da735e372315b34e (diff)
Remove /*overload*/ prefix from mb_* calls
I believe this was temporary flagging to see which code is migrated and can be safely removed now. Signed-off-by: Michal Čihař <michal@cihar.com>
Diffstat (limited to 'export.php')
-rw-r--r--export.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/export.php b/export.php
index d2e5feed9a..75fc590d59 100644
--- a/export.php
+++ b/export.php
@@ -254,7 +254,7 @@ if (!defined('TESTSUITE')) {
if ($export_type == 'server') {
$err_url = 'server_export.php' . PMA_URL_getCommon();
} elseif ($export_type == 'database'
- && /*overload*/mb_strlen($db)
+ && mb_strlen($db)
) {
$err_url = 'db_export.php' . PMA_URL_getCommon(array('db' => $db));
// Check if we have something to export
@@ -263,8 +263,8 @@ if (!defined('TESTSUITE')) {
} else {
$tables = array();
}
- } elseif ($export_type == 'table' && /*overload*/mb_strlen($db)
- && /*overload*/mb_strlen($table)
+ } elseif ($export_type == 'table' && mb_strlen($db)
+ && mb_strlen($table)
) {
$err_url = 'tbl_export.php' . PMA_URL_getCommon(
array(