diff options
author | Marc Alexander <admin@m-a-styles.de> | 2015-04-03 16:46:37 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2015-04-03 16:48:26 +0200 |
commit | 55f6329c1d99dfbb20c9ac75423f261ec2cf9158 (patch) | |
tree | e44a4db42f160e23212fdd78ed4d05c1ab93958e /phpBB | |
parent | 418aabb46e6515a292c8c6ef9eaadac377a858cb (diff) | |
parent | 4ccba9904752deae493dd208f70ec7f99baf018e (diff) | |
download | forums-55f6329c1d99dfbb20c9ac75423f261ec2cf9158.tar forums-55f6329c1d99dfbb20c9ac75423f261ec2cf9158.tar.gz forums-55f6329c1d99dfbb20c9ac75423f261ec2cf9158.tar.bz2 forums-55f6329c1d99dfbb20c9ac75423f261ec2cf9158.tar.xz forums-55f6329c1d99dfbb20c9ac75423f261ec2cf9158.zip |
Merge pull request #3467 from dragosvr92/patch-5
[ticket/13602] Adding a new event overall_header_navbar_before
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/docs/events.md | 8 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/overall_header.html | 2 | ||||
-rw-r--r-- | phpBB/styles/subsilver2/template/overall_header.html | 2 |
3 files changed, 10 insertions, 2 deletions
diff --git a/phpBB/docs/events.md b/phpBB/docs/events.md index 5c4b6a8d7d..a76da95f7b 100644 --- a/phpBB/docs/events.md +++ b/phpBB/docs/events.md @@ -840,6 +840,14 @@ overall_header_head_append * Since: 3.1.0-a1 * Purpose: Add asset calls directly before the `</head>` tag +overall_header_navbar_before +=== +* Locations: + + styles/prosilver/template/overall_header.html + + styles/subsilver2/template/overall_header.html +* Since: 3.1.4-RC1 +* Purpose: Add content before the navigation bar + overall_header_navigation_append === * Locations: diff --git a/phpBB/styles/prosilver/template/overall_header.html b/phpBB/styles/prosilver/template/overall_header.html index c4dbb6a035..e0c8e51d25 100644 --- a/phpBB/styles/prosilver/template/overall_header.html +++ b/phpBB/styles/prosilver/template/overall_header.html @@ -85,7 +85,7 @@ </div> </div> - + <!-- EVENT overall_header_navbar_before --> <!-- INCLUDE navbar_header.html --> </div> diff --git a/phpBB/styles/subsilver2/template/overall_header.html b/phpBB/styles/subsilver2/template/overall_header.html index 225a7d85ff..f3693eb865 100644 --- a/phpBB/styles/subsilver2/template/overall_header.html +++ b/phpBB/styles/subsilver2/template/overall_header.html @@ -152,7 +152,7 @@ function marklist(id, name, state) </tr> </table> </div> - + <!-- EVENT overall_header_navbar_before --> <div id="menubar"> <table width="100%" cellspacing="0"> <tr> |