diff options
author | brunoais <brunoaiss@gmail.com> | 2015-03-01 21:17:06 +0000 |
---|---|---|
committer | brunoais <brunoaiss@gmail.com> | 2015-03-01 21:17:06 +0000 |
commit | c7cc8a098e2a38bbe822468cead4ee9df1745104 (patch) | |
tree | de2b7e22841e10a99432d71aba71288a694e2067 /phpBB/phpbb | |
parent | d53b584c9a5ac247bfb88aa230dc064b7a73e72c (diff) | |
download | forums-c7cc8a098e2a38bbe822468cead4ee9df1745104.tar forums-c7cc8a098e2a38bbe822468cead4ee9df1745104.tar.gz forums-c7cc8a098e2a38bbe822468cead4ee9df1745104.tar.bz2 forums-c7cc8a098e2a38bbe822468cead4ee9df1745104.tar.xz forums-c7cc8a098e2a38bbe822468cead4ee9df1745104.zip |
[ticket/13661] Re-Fixed $log_type -> $log_time
Thanks to goof for pointing it out...
PHPBB3-13661
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/log/log.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/log/log.php b/phpBB/phpbb/log/log.php index 8e5f75807c..3d89e7403f 100644 --- a/phpBB/phpbb/log/log.php +++ b/phpBB/phpbb/log/log.php @@ -535,7 +535,7 @@ class log implements \phpbb\log\log_interface 'ORDER_BY' => $sort_by, ); - if($log_type){ + if($log_time){ $get_logs_sql_ary['WHERE'] = 'l.log_time >= ' . (int) $log_time . ' AND ' . $get_logs_sql_ary['WHERE']; } |