Skip to content

Commit

Permalink
Homepage|Forums: Various accessibility issues wrt alt image descriptions
Browse files Browse the repository at this point in the history
This again required some (simple) modifications to phpBB itself.
  • Loading branch information
danij-deng committed Apr 21, 2014
1 parent 27f3027 commit dddece7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion web/forums/skin/template/forumlist_body.html
Expand Up @@ -39,7 +39,7 @@ <h2><a href="{forumrow.U_VIEWFORUM}" class="forumtitle">{forumrow.FORUM_NAME}</a
<dd class="exlcol lastpost">
<span>
<!-- IF forumrow.U_UNAPPROVED_TOPICS --><a href="{forumrow.U_UNAPPROVED_TOPICS}">{UNAPPROVED_IMG}</a><!-- ENDIF -->
<!-- IF forumrow.LAST_POST_TIME --><!-- IF not S_IS_BOT --><a href="{forumrow.U_LAST_POST}">{LAST_POST_IMG}</a> <span class="inlcnt">{L_LAST_POST}</span> <!-- ENDIF --><time datetime="{forumrow.LAST_POST_TIMEISO861}">{forumrow.LAST_POST_TIME}</time> {L_POST_BY_AUTHOR} {forumrow.LAST_POSTER_FULL}<!-- ELSE -->{L_NO_POSTS}<!-- ENDIF -->
<!-- IF forumrow.LAST_POST_TIME --><!-- IF not S_IS_BOT --><a href="{forumrow.U_LAST_POST}" title="{L_VIEW_LATEST_POST}">{LAST_POST_IMG} <span class="inlcnt">{L_LAST_POST}</span></a> <!-- ENDIF --><time datetime="{forumrow.LAST_POST_TIMEISO861}">{forumrow.LAST_POST_TIME}</time> {L_POST_BY_AUTHOR} {forumrow.LAST_POSTER_FULL}<!-- ELSE -->{L_NO_POSTS}<!-- ENDIF -->
</span>
</dd>
<dt style="clear:both">posts.</dt>
Expand Down
2 changes: 1 addition & 1 deletion web/forums/skin/template/search_results.html
Expand Up @@ -79,7 +79,7 @@ <h2>
<!-- ENDIF -->
<dl class="expcol icon">
<dt></dt>
<dd class="exlcol lastpost"><!-- IF not S_IS_BOT --><a href="{searchresults.U_LAST_POST}">{LAST_POST_IMG}</a> <span class="inlcnt">{L_LAST_POST}</span> <!-- ENDIF --><time datetime="{searchresults.LAST_POST_TIMEISO861}">{searchresults.LAST_POST_TIME}</time> {L_POST_BY_AUTHOR} {searchresults.LAST_POST_AUTHOR_FULL}
<dd class="exlcol lastpost"><!-- IF not S_IS_BOT --><a href="{searchresults.U_LAST_POST}">{LAST_POST_IMG} <span class="inlcnt">{L_LAST_POST}</span></a> <!-- ENDIF --><time datetime="{searchresults.LAST_POST_TIMEISO861}">{searchresults.LAST_POST_TIME}</time> {L_POST_BY_AUTHOR} {searchresults.LAST_POST_AUTHOR_FULL}
<dt style="clear:both">replies.</dt>
<dd class="exlcol posts">{searchresults.TOPIC_REPLIES}</dd>
<dt>views,</dt>
Expand Down
2 changes: 1 addition & 1 deletion web/forums/skin/template/viewforum_body.html
Expand Up @@ -158,7 +158,7 @@ <h2><!-- IF topicrow.S_UNREAD_TOPIC --><a href="{topicrow.U_NEWEST_POST}">{NEWES
<!-- ENDIF -->
<dl class="expcol icon">
<dt></dt>
<dd class="exlcol lastpost"><!-- IF not S_IS_BOT --><a href="{topicrow.U_LAST_POST}">{LAST_POST_IMG}</a> <span class="inlcnt">{L_LAST_POST}</span> <!-- ENDIF --><time datetime="{topicrow.LAST_POST_TIMEISO861}">{topicrow.LAST_POST_TIME}</time> {L_POST_BY_AUTHOR} {topicrow.LAST_POST_AUTHOR_FULL}</span>
<dd class="exlcol lastpost"><!-- IF not S_IS_BOT --><a href="{topicrow.U_LAST_POST}" title="{L_VIEW_LATEST_POST}">{LAST_POST_IMG} <span class="inlcnt">{L_LAST_POST}</span></a> <!-- ENDIF --><time datetime="{topicrow.LAST_POST_TIMEISO861}">{topicrow.LAST_POST_TIME}</time> {L_POST_BY_AUTHOR} {topicrow.LAST_POST_AUTHOR_FULL}</span>
<dt style="clear:both">replies.</dt>
<dd class="exlcol posts" >{topicrow.REPLIES}</dd>
<dt>views,</dt>
Expand Down

0 comments on commit dddece7

Please sign in to comment.