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 'libraries/replication.inc.php')
-rw-r--r--libraries/replication.inc.php7
1 files changed, 2 insertions, 5 deletions
diff --git a/libraries/replication.inc.php b/libraries/replication.inc.php
index 8b0c79934f..f4a1ec7e9e 100644
--- a/libraries/replication.inc.php
+++ b/libraries/replication.inc.php
@@ -204,11 +204,8 @@ function PMA_extractDbOrTable($string, $what = 'db')
*/
function PMA_Replication_Slave_control($action, $control = null, $link = null)
{
- /** @var PMA_String $pmaString */
- $pmaString = $GLOBALS['PMA_String'];
-
- $action = $pmaString->strtoupper($action);
- $control = $pmaString->strtoupper($control);
+ $action = /*overload*/mb_strtoupper($action);
+ $control = /*overload*/mb_strtoupper($control);
if ($action != "START" && $action != "STOP") {
return -1;