diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-07-23 13:15:08 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-09-15 10:28:37 -0500 |
commit | 0c56bd45eff15b0bff2672ed08b390d0248625d8 (patch) | |
tree | 27e362c3a59313543f7a088be614eb6776309714 /phpBB/styles | |
parent | ffe7f76b90bd24c4c2f2c8bf24c34df69f2def52 (diff) | |
download | forums-0c56bd45eff15b0bff2672ed08b390d0248625d8.tar forums-0c56bd45eff15b0bff2672ed08b390d0248625d8.tar.gz forums-0c56bd45eff15b0bff2672ed08b390d0248625d8.tar.bz2 forums-0c56bd45eff15b0bff2672ed08b390d0248625d8.tar.xz forums-0c56bd45eff15b0bff2672ed08b390d0248625d8.zip |
[ticket/11021] Better language strings for site home url/text
Correct the logo title to be {L_HOME} if {U_HOME} is used.
Check if the Home text is instead of just equal to false when
outputting it to the template
PHPBB3-11021
Diffstat (limited to 'phpBB/styles')
-rw-r--r-- | phpBB/styles/prosilver/template/overall_header.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/overall_header.html b/phpBB/styles/prosilver/template/overall_header.html index 13907a6ae4..47a53c8f60 100644 --- a/phpBB/styles/prosilver/template/overall_header.html +++ b/phpBB/styles/prosilver/template/overall_header.html @@ -95,7 +95,7 @@ <div class="inner"> <div id="site-description"> - <a href="<!-- IF U_HOME -->{U_HOME}<!-- ELSE -->{U_INDEX}<!-- ENDIF -->" title="{L_INDEX}" id="logo">{SITE_LOGO_IMG}</a> + <a href="<!-- IF U_HOME -->{U_HOME}<!-- ELSE -->{U_INDEX}<!-- ENDIF -->" title="<!-- IF U_HOME -->{L_HOME}<!-- ELSE -->{L_INDEX}<!-- ENDIF -->" id="logo">{SITE_LOGO_IMG}</a> <h1>{SITENAME}</h1> <p>{SITE_DESCRIPTION}</p> <p class="skiplink"><a href="#start_here">{L_SKIP}</a></p> |