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:
Diffstat (limited to 'tbl_chart.php')
-rw-r--r--tbl_chart.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tbl_chart.php b/tbl_chart.php
index 6d5f316c30..f9609c9094 100644
--- a/tbl_chart.php
+++ b/tbl_chart.php
@@ -21,7 +21,7 @@ if (isset($_REQUEST['ajax_request'])
) {
$response = PMA_Response::getInstance();
- if ($pmaString->strlen($GLOBALS['table']) && $pmaString->strlen($GLOBALS['db'])
+ if (/*overload*/mb_strlen($GLOBALS['table']) && /*overload*/mb_strlen($GLOBALS['db'])
) {
include './libraries/tbl_common.inc.php';
}
@@ -81,12 +81,12 @@ $scripts->addFile('jqplot/plugins/jqplot.highlighter.js');
/**
* Runs common work
*/
-if ($pmaString->strlen($GLOBALS['table'])) {
+if (/*overload*/mb_strlen($GLOBALS['table'])) {
$url_params['goto'] = $cfg['DefaultTabTable'];
$url_params['back'] = 'tbl_sql.php';
include 'libraries/tbl_common.inc.php';
include 'libraries/tbl_info.inc.php';
-} elseif ($pmaString->strlen($GLOBALS['db'])) {
+} elseif (/*overload*/mb_strlen($GLOBALS['db'])) {
$url_params['goto'] = $cfg['DefaultTabDatabase'];
$url_params['back'] = 'sql.php';
include 'libraries/db_common.inc.php';