From 9bd6535a7df400e73d6f6d69d2b4b1a5d5714bcd Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Sun, 22 Feb 2015 22:44:31 +0100 Subject: [PATCH] [ticket/13647] Send 301 status PHPBB3-13647 --- phpBB/faq.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/faq.php b/phpBB/faq.php index e6a44f588f..5d8a97bc26 100644 --- a/phpBB/faq.php +++ b/phpBB/faq.php @@ -27,5 +27,5 @@ $user->setup(); /** @var \phpbb\controller\helper $controller_helper */ $controller_helper = $phpbb_container->get('controller.helper'); -// TODO send "Moved permanently" header +send_status_line(301, 'Moved Permanently'); redirect($controller_helper->route('phpbb_help_controller', array('mode' => $request->variable('mode', 'faq'))));