diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2015-05-28 11:05:32 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2015-05-28 11:05:32 +0200 |
commit | 8fda16527e75ae46dfa6e4dc580bf58e1162b2ea (patch) | |
tree | 429e5dcace0b6f38318fbaaa042b0614e13dc33b | |
parent | 7580798a5a24599ba7ed8de6d7a4a60875d8e2ec (diff) | |
parent | 345c25c367b7bb6d132a9d260c0066fe9e88f79b (diff) | |
download | forums-8fda16527e75ae46dfa6e4dc580bf58e1162b2ea.tar forums-8fda16527e75ae46dfa6e4dc580bf58e1162b2ea.tar.gz forums-8fda16527e75ae46dfa6e4dc580bf58e1162b2ea.tar.bz2 forums-8fda16527e75ae46dfa6e4dc580bf58e1162b2ea.tar.xz forums-8fda16527e75ae46dfa6e4dc580bf58e1162b2ea.zip |
Merge pull request #3600 from dragosvr92/ticket/13808
[ticket/13808] search_body_form_before
-rw-r--r-- | phpBB/docs/events.md | 8 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/search_body.html | 1 | ||||
-rw-r--r-- | phpBB/styles/subsilver2/template/search_body.html | 1 |
3 files changed, 10 insertions, 0 deletions
diff --git a/phpBB/docs/events.md b/phpBB/docs/events.md index 8a006fce81..1a04815169 100644 --- a/phpBB/docs/events.md +++ b/phpBB/docs/events.md @@ -1076,6 +1076,14 @@ quickreply_editor_message_before * Since: 3.1.0-a4 * Purpose: Add content before the quick reply textbox +search_body_form_before +=== +* Locations: + + styles/prosilver/template/search_body.html + + styles/subsilver2/template/search_body.html +* Since: 3.1.5 +* Purpose: Add content before the search form + search_results_header_after === * Locations: diff --git a/phpBB/styles/prosilver/template/search_body.html b/phpBB/styles/prosilver/template/search_body.html index 2f15830eb1..8d56a103d2 100644 --- a/phpBB/styles/prosilver/template/search_body.html +++ b/phpBB/styles/prosilver/template/search_body.html @@ -2,6 +2,7 @@ <h2 class="solo">{L_SEARCH}</h2> +<!-- EVENT search_body_form_before --> <form method="get" action="{S_SEARCH_ACTION}" data-focus="keywords"> <div class="panel"> diff --git a/phpBB/styles/subsilver2/template/search_body.html b/phpBB/styles/subsilver2/template/search_body.html index c0199fbae8..d3aa758b43 100644 --- a/phpBB/styles/subsilver2/template/search_body.html +++ b/phpBB/styles/subsilver2/template/search_body.html @@ -2,6 +2,7 @@ <div id="pagecontent"> + <!-- EVENT search_body_form_before --> <form method="get" action="{S_SEARCH_ACTION}"> <table class="tablebg" width="100%" cellspacing="1"> |