aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/feed.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/feed.php')
-rw-r--r--phpBB/feed.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/phpBB/feed.php b/phpBB/feed.php
index a783f83ffd..812b667868 100644
--- a/phpBB/feed.php
+++ b/phpBB/feed.php
@@ -30,6 +30,15 @@ if (!$config['feed_enable'])
// Start session
$user->session_begin();
+
+if (!empty($config['feed_http_auth']) && request_var('auth', '') == 'http')
+{
+ phpbb_http_login(array(
+ 'auth_message' => 'Feed',
+ 'viewonline' => request_var('viewonline', true),
+ ));
+}
+
$auth->acl($user->data);
$user->setup();