aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2002-01-27 13:14:15 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2002-01-27 13:14:15 +0000
commit5155a90a466d47723c5e9e40f744609ea4696f23 (patch)
tree474ed338ab31f9b6562d5849576d8fc3eeb298ad
parent57fdecdc0e7ca0751ac28fd4c34723033383bb14 (diff)
downloadforums-5155a90a466d47723c5e9e40f744609ea4696f23.tar
forums-5155a90a466d47723c5e9e40f744609ea4696f23.tar.gz
forums-5155a90a466d47723c5e9e40f744609ea4696f23.tar.bz2
forums-5155a90a466d47723c5e9e40f744609ea4696f23.tar.xz
forums-5155a90a466d47723c5e9e40f744609ea4696f23.zip
Fixed $phpEx inside single quotes
git-svn-id: file:///svn/phpbb/trunk@1966 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r--phpBB/viewforum.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php
index 72d6cfd516..b4f97ff314 100644
--- a/phpBB/viewforum.php
+++ b/phpBB/viewforum.php
@@ -169,7 +169,7 @@ if( $is_auth['auth_mod'] && $board_config['prune_enable'] )
{
if( $forum_row['prune_next'] < time() && $forum_row['prune_enable'] )
{
- include($phpbb_root_path . 'includes/prune.$phpEx');
+ include($phpbb_root_path . 'includes/prune.'.$phpEx);
auto_prune($forum_id);
}
}