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:
authorMarc Delisle <marc@infomarc.info>2011-05-04 03:05:24 +0400
committerMarc Delisle <marc@infomarc.info>2011-05-04 03:05:24 +0400
commit73c57b099e8b2d2c99fcb4d0888dcc40f4dd366a (patch)
tree95b308fbe85ed70eb9a27c72724ff73f90d080de /view_operations.php
parentb2b1953db11219b5ac801ab58c3ecff2cfbb7f29 (diff)
Continue to replace warning level with error level
Diffstat (limited to 'view_operations.php')
-rw-r--r--view_operations.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/view_operations.php b/view_operations.php
index 55d1c7445f..4a315d0493 100644
--- a/view_operations.php
+++ b/view_operations.php
@@ -64,7 +64,7 @@ if (isset($result)) {
if (! empty($warning_messages)) {
$_message = new PMA_Message;
$_message->addMessages($warning_messages);
- $_message->isWarning(true);
+ $_message->isError(true);
unset($warning_messages);
}
PMA_showMessage($_message, $sql_query, $_type, $is_view = true);