diff options
author | Tristan Darricau <github@darricau.eu> | 2014-04-17 17:39:42 +0200 |
---|---|---|
committer | Tristan Darricau <github@darricau.eu> | 2014-04-18 00:33:02 +0200 |
commit | 5008cbf903114047d45f93c88d8ea1444ed377cc (patch) | |
tree | e9055fa85ebe9b9e1ccabb5e7cdad79342e2c16e | |
parent | b305364b278cb224346a4a98cfdace24b2f3b845 (diff) | |
download | forums-5008cbf903114047d45f93c88d8ea1444ed377cc.tar forums-5008cbf903114047d45f93c88d8ea1444ed377cc.tar.gz forums-5008cbf903114047d45f93c88d8ea1444ed377cc.tar.bz2 forums-5008cbf903114047d45f93c88d8ea1444ed377cc.tar.xz forums-5008cbf903114047d45f93c88d8ea1444ed377cc.zip |
[ticket/12418] Notice displayed for feed.php
https://tracker.phpbb.com/browse/PHPBB3-12418
language/viewtopic.php isn't loaded, so MISSING_INLINE_ATTACHMENT isn't
available.
PHPBB3-12418
-rw-r--r-- | phpBB/feed.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/feed.php b/phpBB/feed.php index c31a6b6b1d..9ff8c66b9d 100644 --- a/phpBB/feed.php +++ b/phpBB/feed.php @@ -37,7 +37,7 @@ if (!empty($config['feed_http_auth']) && request_var('auth', '') == 'http') } $auth->acl($user->data); -$user->setup(); +$user->setup('viewtopic'); // Initial var setup $forum_id = request_var('f', 0); |