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 'view_operations.php')
-rw-r--r--view_operations.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/view_operations.php b/view_operations.php
index 116af4931f..db80bc28c1 100644
--- a/view_operations.php
+++ b/view_operations.php
@@ -52,7 +52,9 @@ if (isset($result)) {
// (for example, a table rename)
$_type = 'success';
if (empty($_message)) {
- $_message = $result ? __('Your SQL query has been executed successfully') : __('Error');
+ $_message = $result
+ ? __('Your SQL query has been executed successfully')
+ : __('Error');
// $result should exist, regardless of $_message
$_type = $result ? 'success' : 'error';
}