mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
Fixed small error in bracketing
git-svn-id: file:///svn/phpbb/trunk@519 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
4dd500a575
commit
8276d5728c
1 changed files with 2 additions and 2 deletions
|
@ -119,9 +119,9 @@ if(!$is_auth['auth_read'] || !$is_auth['auth_view'])
|
|||
//
|
||||
// Do the forum Prune
|
||||
//
|
||||
if(($is_auth['auth_mod'] || ($is_auth['auth_admin'})) && ($board_config['prune_enable']))
|
||||
if( ( $is_auth['auth_mod'] || $is_auth['auth_admin'] ) && $board_config['prune_enable'] )
|
||||
{
|
||||
if(($forum_row[0]['prune_next'] < time()) && ($forum_row[0]['prune_enable']))
|
||||
if( $forum_row[0]['prune_next'] < time() && $forum_row[0]['prune_enable'] )
|
||||
{
|
||||
include('includes/prune.php');
|
||||
auto_prune($forum_id);
|
||||
|
|
Loading…
Add table
Reference in a new issue