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-10-04 12:09:06 +0400
committerHugues Peccatte <hugues.peccatte@gmail.com>2014-10-04 12:09:06 +0400
commit49ababac08dfc8e901c78eca97a95c0c83654613 (patch)
tree321b1beaa87621cdaf1f2705f0f8bf6df347db9e /gis_data_editor.php
parente20510de39695bdaf66cf8b57390a86f03505340 (diff)
Replace mb functions by standard string functions.
Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
Diffstat (limited to 'gis_data_editor.php')
-rw-r--r--gis_data_editor.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/gis_data_editor.php b/gis_data_editor.php
index 66a0814359..f14e4662d2 100644
--- a/gis_data_editor.php
+++ b/gis_data_editor.php
@@ -50,7 +50,7 @@ if (! isset($gis_data['gis_type'])) {
$gis_data['gis_type'] = /*overload*/mb_strtoupper($_REQUEST['type']);
}
if (isset($_REQUEST['value']) && trim($_REQUEST['value']) != '') {
- $start = (/*overload*/mb_substr($_REQUEST['value'], 0, 1) == "'") ? 1 : 0;
+ $start = (substr($_REQUEST['value'], 0, 1) == "'") ? 1 : 0;
$gis_data['gis_type'] = /*overload*/mb_substr(
$_REQUEST['value'],
$start,