diff options
author | Erik Frèrejean <erikfrerejean@phpbb.com> | 2012-06-06 12:46:50 +0200 |
---|---|---|
committer | David King <imkingdavid@gmail.com> | 2012-12-17 11:37:27 -0500 |
commit | b95549a7a7c9bcac72764f03ab453749b9ba3ae2 (patch) | |
tree | dbf8c8439a913cf5444b16cb13312bb568ad9a07 /phpBB/styles | |
parent | ce7d440a6e81735811ac2f2bdb40c4f17e5d1451 (diff) | |
download | forums-b95549a7a7c9bcac72764f03ab453749b9ba3ae2.tar forums-b95549a7a7c9bcac72764f03ab453749b9ba3ae2.tar.gz forums-b95549a7a7c9bcac72764f03ab453749b9ba3ae2.tar.bz2 forums-b95549a7a7c9bcac72764f03ab453749b9ba3ae2.tar.xz forums-b95549a7a7c9bcac72764f03ab453749b9ba3ae2.zip |
[feature/events] Correct template calls
There where two `<!-- LEDGE ... -->` calls in the templates left.
Replace those two calls with the proper `<!-- EVENT ... -->`
call
PHPBB3-9550
Diffstat (limited to 'phpBB/styles')
-rw-r--r-- | phpBB/styles/prosilver/template/forumlist_body.html | 2 | ||||
-rw-r--r-- | phpBB/styles/subsilver2/template/forumlist_body.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/template/forumlist_body.html b/phpBB/styles/prosilver/template/forumlist_body.html index 8963da8d1e..7e893e012b 100644 --- a/phpBB/styles/prosilver/template/forumlist_body.html +++ b/phpBB/styles/prosilver/template/forumlist_body.html @@ -50,7 +50,7 @@ <dd class="lastpost"><span> <!-- IF forumrow.U_UNAPPROVED_TOPICS --><a href="{forumrow.U_UNAPPROVED_TOPICS}">{UNAPPROVED_IMG}</a><!-- ENDIF --> <!-- IF forumrow.LAST_POST_TIME --><dfn>{L_LAST_POST}</dfn> - <!-- LEDGE forumlist_body_last_post --> + <!-- EVENT forumlist_body_last_post --> <!-- IF forumrow.S_DISPLAY_SUBJECT --> <a href="{forumrow.U_LAST_POST}" title="{forumrow.LAST_POST_SUBJECT}" class="lastsubject">{forumrow.LAST_POST_SUBJECT_TRUNCATED}</a> <br /> <!-- ENDIF --> diff --git a/phpBB/styles/subsilver2/template/forumlist_body.html b/phpBB/styles/subsilver2/template/forumlist_body.html index 972ddeb513..b44b307f64 100644 --- a/phpBB/styles/subsilver2/template/forumlist_body.html +++ b/phpBB/styles/subsilver2/template/forumlist_body.html @@ -63,7 +63,7 @@ <!-- IF forumrow.S_DISPLAY_SUBJECT --> <p class="topicdetails"><a href="{forumrow.U_LAST_POST}" title="{forumrow.LAST_POST_SUBJECT}" class="lastsubject">{forumrow.LAST_POST_SUBJECT_TRUNCATED}</a></p> <!-- ENDIF --> - <!-- LEDGE forumlist_body_last_post --> + <!-- EVENT forumlist_body_last_post --> <p class="topicdetails"><!-- IF forumrow.U_UNAPPROVED_TOPICS --><a href="{forumrow.U_UNAPPROVED_TOPICS}" class="imageset">{UNAPPROVED_IMG}</a> <!-- ENDIF -->{forumrow.LAST_POST_TIME}</p> <p class="topicdetails">{forumrow.LAST_POSTER_FULL} <!-- IF not S_IS_BOT --><a href="{forumrow.U_LAST_POST}" class="imageset">{LAST_POST_IMG}</a><!-- ENDIF --> |