From e69a86c49e378ca12a8e0b0912021858c34c37db Mon Sep 17 00:00:00 2001 From: Matt Friedman Date: Fri, 5 Jul 2024 13:52:13 -0700 Subject: [PATCH 1/2] [ticket/17364] Correctly handle styles list in ACP Forums PHPBB-17364 Signed-off-by: Matt Friedman --- phpBB/adm/style/acp_forums.html | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/phpBB/adm/style/acp_forums.html b/phpBB/adm/style/acp_forums.html index 613a054b32..d030d2e587 100644 --- a/phpBB/adm/style/acp_forums.html +++ b/phpBB/adm/style/acp_forums.html @@ -181,7 +181,14 @@
-
+
+ +
From 51c424b93d549359db65f09f9f5d66176f1368ca Mon Sep 17 00:00:00 2001 From: Matt Friedman Date: Fri, 5 Jul 2024 19:22:29 -0700 Subject: [PATCH 2/2] [ticket/17364] Fix random spelling error in code PHPBB-17364 Signed-off-by: Matt Friedman --- phpBB/includes/acp/acp_board.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/acp/acp_board.php b/phpBB/includes/acp/acp_board.php index a632253c52..d457b13cb4 100644 --- a/phpBB/includes/acp/acp_board.php +++ b/phpBB/includes/acp/acp_board.php @@ -393,7 +393,7 @@ class acp_board 'title' => 'ACP_AUTH_SETTINGS', 'vars' => array( 'legend1' => 'ACP_AUTH_SETTINGS', - 'auth_method' => array('lang' => 'AUTH_METHOD', 'validate' => 'string', 'type' => 'select:1:toggable', 'method' => 'select_auth_method', 'explain' => false), + 'auth_method' => array('lang' => 'AUTH_METHOD', 'validate' => 'string', 'type' => 'select:1:toggleable', 'method' => 'select_auth_method', 'explain' => false), ) ); break;