diff options
author | Matt Friedman <maf675@gmail.com> | 2013-03-20 11:39:06 -0700 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2013-03-20 11:39:06 -0700 |
commit | 940d16b585ac83ace7ee76b0fd7d033bcedda318 (patch) | |
tree | e92a8b847c8945606b0d362a8119adb90fbe0c76 /phpBB/styles | |
parent | b51a66b60bffd0e4e07a7bd8db6532762c52678d (diff) | |
download | forums-940d16b585ac83ace7ee76b0fd7d033bcedda318.tar forums-940d16b585ac83ace7ee76b0fd7d033bcedda318.tar.gz forums-940d16b585ac83ace7ee76b0fd7d033bcedda318.tar.bz2 forums-940d16b585ac83ace7ee76b0fd7d033bcedda318.tar.xz forums-940d16b585ac83ace7ee76b0fd7d033bcedda318.zip |
[ticket/11463] Add title attribute to topics in search results
We use this title attribute in viewforum_body.html, but not in
search_results.html. Perhaps we should, as this will maintain
consitency between all these topic view pages.
PHPBB3-11463
Diffstat (limited to 'phpBB/styles')
-rw-r--r-- | phpBB/styles/prosilver/template/search_results.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/search_results.html b/phpBB/styles/prosilver/template/search_results.html index 62b7c61eb3..6e63a65993 100644 --- a/phpBB/styles/prosilver/template/search_results.html +++ b/phpBB/styles/prosilver/template/search_results.html @@ -60,7 +60,7 @@ <!-- BEGIN searchresults --> <li class="row<!-- IF searchresults.S_ROW_COUNT is even --> bg1<!-- ELSE --> bg2<!-- ENDIF -->"> <dl class="icon {searchresults.TOPIC_IMG_STYLE}"> - <dt <!-- IF searchresults.TOPIC_ICON_IMG -->style="background-image: url({T_ICONS_PATH}{searchresults.TOPIC_ICON_IMG}); background-repeat: no-repeat;"<!-- ENDIF -->> + <dt <!-- IF searchresults.TOPIC_ICON_IMG -->style="background-image: url({T_ICONS_PATH}{searchresults.TOPIC_ICON_IMG}); background-repeat: no-repeat;"<!-- ENDIF --> title="{searchresults.TOPIC_FOLDER_IMG_ALT}"> <!-- IF searchresults.S_UNREAD_TOPIC --><a href="{searchresults.U_NEWEST_POST}">{NEWEST_POST_IMG}</a> <!-- ENDIF --> <a href="{searchresults.U_VIEW_TOPIC}" class="topictitle">{searchresults.TOPIC_TITLE}</a> {searchresults.ATTACH_ICON_IMG} <!-- IF searchresults.S_TOPIC_UNAPPROVED or searchresults.S_POSTS_UNAPPROVED --><a href="{searchresults.U_MCP_QUEUE}">{searchresults.UNAPPROVED_IMG}</a> <!-- ENDIF --> |