From bd0107a2ab58fe7f25295df28d56869bc3146fa4 Mon Sep 17 00:00:00 2001 From: omniError Date: Mon, 17 Nov 2014 16:09:40 -0600 Subject: [PATCH 1/3] [ticket/13347] missing acp_forums template events PHPBB3-13347 --- phpBB/adm/style/acp_forums.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/phpBB/adm/style/acp_forums.html b/phpBB/adm/style/acp_forums.html index af79791ff8..68bc0020ec 100644 --- a/phpBB/adm/style/acp_forums.html +++ b/phpBB/adm/style/acp_forums.html @@ -111,6 +111,7 @@
{L_FORUM_SETTINGS} +
@@ -182,6 +183,7 @@
+
@@ -198,6 +200,7 @@
{L_GENERAL_FORUM_SETTINGS} +
@@ -246,6 +249,7 @@
{L_FORUM_PRUNE_SETTINGS} +

{L_FORUM_AUTO_PRUNE_EXPLAIN}
@@ -291,6 +295,7 @@

{L_AUTO_PRUNE_SHADOW_DAYS_EXPLAIN}
{L_DAYS}
+
@@ -317,6 +322,7 @@
{L_FORUM_RULES} +

{L_FORUM_RULES_LINK_EXPLAIN}
@@ -334,6 +340,7 @@
+
From 115bf6353866a667bf941b825c5ef90abc68ec0d Mon Sep 17 00:00:00 2001 From: omniError Date: Mon, 17 Nov 2014 16:14:57 -0600 Subject: [PATCH 2/3] [ticket/13347] fix CS PHPBB3-13347 --- phpBB/adm/style/acp_forums.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/phpBB/adm/style/acp_forums.html b/phpBB/adm/style/acp_forums.html index 68bc0020ec..756092a1f0 100644 --- a/phpBB/adm/style/acp_forums.html +++ b/phpBB/adm/style/acp_forums.html @@ -111,7 +111,7 @@
{L_FORUM_SETTINGS} - +
@@ -183,7 +183,7 @@
- +
@@ -200,7 +200,7 @@
{L_GENERAL_FORUM_SETTINGS} - +
@@ -249,7 +249,7 @@
{L_FORUM_PRUNE_SETTINGS} - +

{L_FORUM_AUTO_PRUNE_EXPLAIN}
@@ -295,7 +295,7 @@

{L_AUTO_PRUNE_SHADOW_DAYS_EXPLAIN}
{L_DAYS}
- +
@@ -322,7 +322,7 @@
{L_FORUM_RULES} - +

{L_FORUM_RULES_LINK_EXPLAIN}
@@ -340,7 +340,7 @@
- +
From c1a0d1bf3d446747238fe32b784440668961fcf7 Mon Sep 17 00:00:00 2001 From: omniError Date: Mon, 17 Nov 2014 16:25:56 -0600 Subject: [PATCH 3/3] [ticket/13347] update event docs PHPBB3-13347 --- phpBB/docs/events.md | 44 +++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 43 insertions(+), 1 deletion(-) diff --git a/phpBB/docs/events.md b/phpBB/docs/events.md index c51bc72160..5d6786e077 100644 --- a/phpBB/docs/events.md +++ b/phpBB/docs/events.md @@ -16,11 +16,53 @@ acp_bbcodes_edit_fieldsets_after * Since: 3.1.0-a3 * Purpose: Add settings to BBCode add/edit form +acp_forums_main_settings_append +=== +* Location: adm/style/acp_forums.html +* Since: 3.1.2-RC1 +* Purpose: Add settings to forums at end of main settings section + +acp_forums_main_settings_prepend +=== +* Location: adm/style/acp_forums.html +* Since: 3.1.2-RC1 +* Purpose: Add settings to forums before main settings section + acp_forums_normal_settings_append === * Location: adm/style/acp_forums.html * Since: 3.1.0-a1 -* Purpose: Add settings to forums +* Purpose: Add settings to forums at end of normal settings section + +acp_forums_normal_settings_prepend +=== +* Location: adm/style/acp_forums.html +* Since: 3.1.2-RC1 +* Purpose: Add settings to forums before normal settings section + +acp_forums_prune_settings_append +=== +* Location: adm/style/acp_forums.html +* Since: 3.1.2-RC1 +* Purpose: Add settings to forums at end of prune settings section + +acp_forums_prune_settings_prepend +=== +* Location: adm/style/acp_forums.html +* Since: 3.1.2-RC1 +* Purpose: Add settings to forums before prune settings section + +acp_forums_rules_settings_append +=== +* Location: adm/style/acp_forums.html +* Since: 3.1.2-RC1 +* Purpose: Add settings to forums at end of rules settings section + +acp_forums_rules_settings_prepend +=== +* Location: adm/style/acp_forums.html +* Since: 3.1.2-RC1 +* Purpose: Add settings to forums before rules settings section acp_group_options_before ===