diff options
author | Andreas Fischer <bantu@phpbb.com> | 2011-08-24 14:51:37 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2011-08-24 14:51:37 +0200 |
commit | 7a36c3b34b82f7470d77e1028375ae14db6874be (patch) | |
tree | fdacfe107ab13bb5d0de6321976120c0c4e77111 /phpBB | |
parent | 540ca1a8d88279b120b142c244c96c9fae9a867b (diff) | |
download | forums-7a36c3b34b82f7470d77e1028375ae14db6874be.tar forums-7a36c3b34b82f7470d77e1028375ae14db6874be.tar.gz forums-7a36c3b34b82f7470d77e1028375ae14db6874be.tar.bz2 forums-7a36c3b34b82f7470d77e1028375ae14db6874be.tar.xz forums-7a36c3b34b82f7470d77e1028375ae14db6874be.zip |
[ticket/10335] Add X-PHPBB-IS-BOT header so reverse proxies know about bots.
PHPBB3-10335
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/feed.php | 6 | ||||
-rw-r--r-- | phpBB/includes/functions.php | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/phpBB/feed.php b/phpBB/feed.php index d737b8e10c..964117c5c1 100644 --- a/phpBB/feed.php +++ b/phpBB/feed.php @@ -173,6 +173,12 @@ if (defined('DEBUG_EXTRA') && request_var('explain', 0) && $auth->acl_get('a_')) header("Content-Type: application/atom+xml; charset=UTF-8"); header("Last-Modified: " . gmdate('D, d M Y H:i:s', $feed_updated_time) . ' GMT'); +if (!empty($user->data['is_bot'])) +{ + // Let reverse proxies know we detected a bot. + header('X-PHPBB-IS-BOT: yes'); +} + echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n"; echo '<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="' . $global_vars['FEED_LANG'] . '">' . "\n"; echo '<link rel="self" type="application/atom+xml" href="' . $global_vars['SELF_LINK'] . '" />' . "\n\n"; diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 6b6679bde5..df49bdf637 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -4641,6 +4641,12 @@ function page_header($page_title = '', $display_online_list = true, $item_id = 0 header('Expires: 0'); header('Pragma: no-cache'); + if (!empty($user->data['is_bot'])) + { + // Let reverse proxies know we detected a bot. + header('X-PHPBB-IS-BOT: yes'); + } + return; } |