diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2015-02-22 22:44:31 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2015-02-22 22:44:31 +0100 |
commit | 9bd6535a7df400e73d6f6d69d2b4b1a5d5714bcd (patch) | |
tree | 320539e3794275c91e99cd37274a2d2c5b09b9d5 | |
parent | 0595ab959ca65a99befafc1d885e56a838819c6a (diff) | |
download | forums-9bd6535a7df400e73d6f6d69d2b4b1a5d5714bcd.tar forums-9bd6535a7df400e73d6f6d69d2b4b1a5d5714bcd.tar.gz forums-9bd6535a7df400e73d6f6d69d2b4b1a5d5714bcd.tar.bz2 forums-9bd6535a7df400e73d6f6d69d2b4b1a5d5714bcd.tar.xz forums-9bd6535a7df400e73d6f6d69d2b4b1a5d5714bcd.zip |
[ticket/13647] Send 301 status
PHPBB3-13647
-rw-r--r-- | phpBB/faq.php | 2 |
1 files changed, 1 insertions, 1 deletions
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')))); |