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 /tbl_create.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 'tbl_create.php')
-rw-r--r--tbl_create.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tbl_create.php b/tbl_create.php
index 79577fe5a9..c465c28cf7 100644
--- a/tbl_create.php
+++ b/tbl_create.php
@@ -16,7 +16,7 @@ require_once 'libraries/create_addfield.lib.php';
PMA\libraries\Util::checkParameters(array('db'));
/* Check if database name is empty */
-if (/*overload*/mb_strlen($db) == 0) {
+if (mb_strlen($db) == 0) {
PMA\libraries\Util::mysqlDie(
__('The database name is empty!'), '', false, 'index.php'
);
@@ -73,7 +73,7 @@ if (isset($_REQUEST['do_save_data'])) {
) {
foreach ($_REQUEST['field_mimetype'] as $fieldindex => $mimetype) {
if (isset($_REQUEST['field_name'][$fieldindex])
- && /*overload*/mb_strlen($_REQUEST['field_name'][$fieldindex])
+ && mb_strlen($_REQUEST['field_name'][$fieldindex])
) {
PMA_setMIME(
$db, $table,