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_operations.php')
-rw-r--r--tbl_operations.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tbl_operations.php b/tbl_operations.php
index 7da47c1fbf..6a4773ed72 100644
--- a/tbl_operations.php
+++ b/tbl_operations.php
@@ -113,7 +113,7 @@ if (isset($_REQUEST['submitoptions'])) {
}
if (! empty($_REQUEST['new_tbl_storage_engine'])
- && $pmaString->strtolower($_REQUEST['new_tbl_storage_engine']) !== $pmaString->strtolower($tbl_storage_engine)
+ && /*overload*/mb_strtolower($_REQUEST['new_tbl_storage_engine']) !== /*overload*/mb_strtolower($tbl_storage_engine)
) {
$new_tbl_storage_engine = $_REQUEST['new_tbl_storage_engine'];
// reset the globals for the new engine
@@ -277,8 +277,8 @@ if (! $hideOrderTable) {
*/
$response->addHTML(PMA_getHtmlForMoveTable());
-if ($pmaString->strstr($show_comment, '; InnoDB free') === false) {
- if ($pmaString->strstr($show_comment, 'InnoDB free') === false) {
+if (/*overload*/mb_strstr($show_comment, '; InnoDB free') === false) {
+ if (/*overload*/mb_strstr($show_comment, 'InnoDB free') === false) {
// only user entered comment
$comment = $show_comment;
} else {