diff options
author | Michael Cullum <unknownbliss@phpbbdevelopers.net> | 2012-05-10 18:58:17 +0100 |
---|---|---|
committer | David King <imkingdavid@gmail.com> | 2012-12-17 11:37:23 -0500 |
commit | 243c984908a40b684322fe0c22f35fdb71cfcc5f (patch) | |
tree | 92f87707e265470ed66c9b4d99f938a8d56ce845 /phpBB/styles/prosilver/template/overall_header.html | |
parent | d913a508a29ee642b13054748dd630de506184a0 (diff) | |
download | forums-243c984908a40b684322fe0c22f35fdb71cfcc5f.tar forums-243c984908a40b684322fe0c22f35fdb71cfcc5f.tar.gz forums-243c984908a40b684322fe0c22f35fdb71cfcc5f.tar.bz2 forums-243c984908a40b684322fe0c22f35fdb71cfcc5f.tar.xz forums-243c984908a40b684322fe0c22f35fdb71cfcc5f.zip |
[feature/events] Add overall_header_index_link_left event
As a portal is of higher presdence than the board, unlike most extensions
it has a link before the board index link. This event satifies that.
PHPBB3-9550
Diffstat (limited to 'phpBB/styles/prosilver/template/overall_header.html')
-rw-r--r-- | phpBB/styles/prosilver/template/overall_header.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/overall_header.html b/phpBB/styles/prosilver/template/overall_header.html index 3a727b71e4..47bce7cc36 100644 --- a/phpBB/styles/prosilver/template/overall_header.html +++ b/phpBB/styles/prosilver/template/overall_header.html @@ -122,7 +122,8 @@ <ul class="linklist navlinks"> <!-- DEFINE $MICRODATA = ' itemtype="http://data-vocabulary.org/Breadcrumb" itemscope=""' --> - <li class="icon-home"><!-- IF U_SITE_HOME --><a href="{U_SITE_HOME}"{$MICRODATA}>{L_SITE_HOME}</a> <strong>‹</strong> <!-- ENDIF --><a href="{U_INDEX}" accesskey="h"{$MICRODATA}>{L_INDEX}</a> + <li class="icon-home"><!-- IF U_SITE_HOME --><a href="{U_SITE_HOME}"{$MICRODATA}>{L_SITE_HOME}</a> <strong>‹</strong> <!-- ENDIF --><!-- EVENT overall_header_index_link_left --> + <a href="{U_INDEX}" accesskey="h"{$MICRODATA}>{L_INDEX}</a> <!-- EVENT overall_header_index_link --> <!-- BEGIN navlinks --> <strong>‹</strong> <a href="{navlinks.U_VIEW_FORUM}"{$MICRODATA}>{navlinks.FORUM_NAME}</a><!-- END navlinks --></li> |