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 /gis_data_editor.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 'gis_data_editor.php')
-rw-r--r--gis_data_editor.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/gis_data_editor.php b/gis_data_editor.php
index 126acfe8c2..d38db8d319 100644
--- a/gis_data_editor.php
+++ b/gis_data_editor.php
@@ -43,14 +43,14 @@ $gis_types = array(
// Extract from field's values if available, if not use the column type passed.
if (! isset($gis_data['gis_type'])) {
if (isset($_REQUEST['type']) && $_REQUEST['type'] != '') {
- $gis_data['gis_type'] = /*overload*/mb_strtoupper($_REQUEST['type']);
+ $gis_data['gis_type'] = mb_strtoupper($_REQUEST['type']);
}
if (isset($_REQUEST['value']) && trim($_REQUEST['value']) != '') {
$start = (substr($_REQUEST['value'], 0, 1) == "'") ? 1 : 0;
- $gis_data['gis_type'] = /*overload*/mb_substr(
+ $gis_data['gis_type'] = mb_substr(
$_REQUEST['value'],
$start,
- /*overload*/mb_strpos($_REQUEST['value'], "(") - $start
+ mb_strpos($_REQUEST['value'], "(") - $start
);
}
if ((! isset($gis_data['gis_type']))