From 2f4e2daa615dddb251fc1f5b8a1ff4de08a2fc83 Mon Sep 17 00:00:00 2001 From: Michael Foster Date: Sat, 3 Aug 2013 06:27:13 -0400 Subject: [PATCH] Fix redirect with board config editor (raw php) --- inc/mod/pages.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/mod/pages.php b/inc/mod/pages.php index 38bdac8b..0a9f825b 100644 --- a/inc/mod/pages.php +++ b/inc/mod/pages.php @@ -1958,7 +1958,7 @@ function mod_config($board_config = false) { if (!$readonly && isset($_POST['code'])) { $code = $_POST['code']; file_put_contents($config_file, $code); - header('Location: ?/config', true, $config['redirect_http']); + header('Location: ?/config' . ($board_config ? '/' . $board_config : ''), true, $config['redirect_http']); return; }