diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-11-21 01:35:53 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-11-21 01:35:53 +0000 |
commit | f44c9705722d4bf3f05342c492d959df3131eccc (patch) | |
tree | 7e7ef3d77a364e35b0827c68df720c7e3303ffe6 /phpBB/templates | |
parent | 44af2623123cd02a8baa484b69f88af8e6d1782b (diff) | |
download | forums-f44c9705722d4bf3f05342c492d959df3131eccc.tar forums-f44c9705722d4bf3f05342c492d959df3131eccc.tar.gz forums-f44c9705722d4bf3f05342c492d959df3131eccc.tar.bz2 forums-f44c9705722d4bf3f05342c492d959df3131eccc.tar.xz forums-f44c9705722d4bf3f05342c492d959df3131eccc.zip |
Just to get topic review working again ...
git-svn-id: file:///svn/phpbb/trunk@3072 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/templates')
-rw-r--r-- | phpBB/templates/subSilver/posting_body.html | 2 | ||||
-rw-r--r-- | phpBB/templates/subSilver/posting_topic_review.html | 23 |
2 files changed, 19 insertions, 6 deletions
diff --git a/phpBB/templates/subSilver/posting_body.html b/phpBB/templates/subSilver/posting_body.html index 688faedbb6..a593a103c3 100644 --- a/phpBB/templates/subSilver/posting_body.html +++ b/phpBB/templates/subSilver/posting_body.html @@ -293,6 +293,6 @@ function checkForm() </tr> </table> -{TOPIC_REVIEW_BOX} +<!-- IF S_DISPLAY_REVIEW --><!-- INCLUDE posting_topic_review.html --><!-- ENDIF --> <!-- INCLUDE overall_footer.html -->
\ No newline at end of file diff --git a/phpBB/templates/subSilver/posting_topic_review.html b/phpBB/templates/subSilver/posting_topic_review.html index 026fc9e904..e3bba7c276 100644 --- a/phpBB/templates/subSilver/posting_topic_review.html +++ b/phpBB/templates/subSilver/posting_topic_review.html @@ -6,6 +6,11 @@ </tr> <tr> <td class="row1"><iframe width="100%" height="300" src="{U_REVIEW_TOPIC}"> + +<!-- ELSE --> + +<!-- INCLUDE simple_header.html --> + <!-- ENDIF --> <table border="0" cellpadding="3" cellspacing="1" width="100%" class="forumline"> @@ -14,11 +19,15 @@ <th class="thCornerR">{L_MESSAGE}</th> </tr> <!-- BEGIN postrow --> - <tr> - <td width="22%" align="left" valign="top" class="{postrow.ROW_CLASS}"><span class="name"><a name="{postrow.U_POST_ID}"></a><b>{postrow.POSTER_NAME}</b></span></td> - <td class="{postrow.ROW_CLASS}" height="28" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0"> + <!-- IF postrow.S_ROW_COUNT is even --> + <tr class="row1"> + <!-- ELSE --> + <tr class="row2"> + <!-- ENDIF --> + <td width="22%" align="left" valign="top"><span class="name"><a name="{postrow.U_POST_ID}"></a><b>{postrow.POSTER_NAME}</b></span></td> + <td height="28" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> - <td width="100%"><img src="{postrow.MINI_POST_IMG}" width="12" height="9" alt="{postrow.L_MINI_POST_ALT}" title="{postrow.L_MINI_POST_ALT}" border="0" /><span class="postdetails">{L_POSTED}: {postrow.POST_DATE}<span class="gen"> </span> {L_POST_SUBJECT}: {postrow.POST_SUBJECT}</span></td> + <td width="100%">{postrow.MINI_POST_IMG}<span class="postdetails">{L_POSTED}: {postrow.POST_DATE}<span class="gen"> </span> {L_POST_SUBJECT}: {postrow.POST_SUBJECT}</span></td> </tr> <tr> <td colspan="2"><hr /></td> @@ -38,4 +47,8 @@ </iframe></td> </tr> </table> -<!-- ENDIF -->
\ No newline at end of file +<!-- ELSE --> + +<!-- INCLUDE simple_footer.html --> + +<!-- ENDIF --> |