diff options
author | brunoais <brunoaiss@gmail.com> | 2015-03-02 08:34:52 +0000 |
---|---|---|
committer | brunoais <brunoaiss@gmail.com> | 2015-03-02 12:06:24 +0000 |
commit | 134a5e0391aa4d05d347a77c0218b29ab9b60a1b (patch) | |
tree | 5fb9530f6474feba823f5f6f7d57309cf19396d1 /phpBB/phpbb | |
parent | c7cc8a098e2a38bbe822468cead4ee9df1745104 (diff) | |
download | forums-134a5e0391aa4d05d347a77c0218b29ab9b60a1b.tar forums-134a5e0391aa4d05d347a77c0218b29ab9b60a1b.tar.gz forums-134a5e0391aa4d05d347a77c0218b29ab9b60a1b.tar.bz2 forums-134a5e0391aa4d05d347a77c0218b29ab9b60a1b.tar.xz forums-134a5e0391aa4d05d347a77c0218b29ab9b60a1b.zip |
[ticket/13661] Brackets in their own line
I didn't even notice that I used my own coding guidelines there...
Thanks to MGaetan89 for pointing it out.
PHPBB3-13661
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/log/log.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/phpbb/log/log.php b/phpBB/phpbb/log/log.php index 3d89e7403f..1aba5851a5 100644 --- a/phpBB/phpbb/log/log.php +++ b/phpBB/phpbb/log/log.php @@ -535,7 +535,8 @@ class log implements \phpbb\log\log_interface 'ORDER_BY' => $sort_by, ); - if($log_time){ + if($log_time) + { $get_logs_sql_ary['WHERE'] = 'l.log_time >= ' . (int) $log_time . ' AND ' . $get_logs_sql_ary['WHERE']; } |