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:
authorMadhura Jayaratne <madhura.cj@gmail.com>2012-04-22 19:58:41 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2012-04-22 19:58:41 +0400
commit4b8d52d937d396301c17472874cb645e92258df3 (patch)
treefcde2fe963c87d5e8059029212583cac220f41d1 /tbl_row_action.php
parent67134da3d01ff2f2469d79223d0d22a4515d3227 (diff)
Fix CheckStyle warnings, Type:CloseBracketNewLine (Closing parenthesis of a multi-line IF statement must be on a new line)
Diffstat (limited to 'tbl_row_action.php')
-rw-r--r--tbl_row_action.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tbl_row_action.php b/tbl_row_action.php
index bd9309bb10..708009a83f 100644
--- a/tbl_row_action.php
+++ b/tbl_row_action.php
@@ -16,7 +16,8 @@ require_once 'libraries/mysql_charsets.lib.php';
* No rows were selected => show again the query and tell that user.
*/
if (! PMA_isValid($_REQUEST['rows_to_delete'], 'array')
- && ! isset($_REQUEST['mult_btn'])) {
+ && ! isset($_REQUEST['mult_btn'])
+) {
$disp_message = __('No rows selected');
$disp_query = '';
include 'sql.php';