|
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';
diff --git a/tbl_structure.php b/tbl_structure.php
index a0b85df77d..9f1578c889 100644
--- a/tbl_structure.php
+++ b/tbl_structure.php
@@ -426,7 +426,8 @@ foreach ($fields as $row) {
= 50604))
// FULLTEXT is possible on TEXT, CHAR and VARCHAR
- && (strpos(' ' . $type, 'text') || strpos(' ' . $type, 'char'))) {
+ && (strpos(' ' . $type, 'text') || strpos(' ' . $type, 'char'))
+ ) {
echo "\n";
?>
|
diff --git a/tbl_tracking.php b/tbl_tracking.php
index 600192aadc..47306fdc31 100644
--- a/tbl_tracking.php
+++ b/tbl_tracking.php
@@ -67,8 +67,10 @@ if (isset($_REQUEST['report_export'])) {
foreach ( $data as $entry ) {
$timestamp = strtotime($entry['date']);
- if ($timestamp >= $filter_ts_from && $timestamp <= $filter_ts_to &&
- ( in_array('*', $filter_users) || in_array($entry['username'], $filter_users) ) ) {
+ if ($timestamp >= $filter_ts_from
+ && $timestamp <= $filter_ts_to
+ && (in_array('*', $filter_users) || in_array($entry['username'], $filter_users))
+ ) {
$tmp_entries[] = array( 'id' => $id,
'timestamp' => $timestamp,
'username' => $entry['username'],
@@ -493,8 +495,10 @@ if (isset($_REQUEST['report']) || isset($_REQUEST['report_export'])) {
}
$timestamp = strtotime($entry['date']);
- if ($timestamp >= $filter_ts_from && $timestamp <= $filter_ts_to &&
- ( in_array('*', $filter_users) || in_array($entry['username'], $filter_users) ) ) {
+ if ($timestamp >= $filter_ts_from
+ && $timestamp <= $filter_ts_to
+ && (in_array('*', $filter_users) || in_array($entry['username'], $filter_users))
+ ) {
?>
|