|
From: Markus P. <mar...@us...> - 2005-04-19 15:55:49
|
Update of /cvsroot/mxbb/core/modules/mx_coreblocks/templates/subSilver In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2884/templates/subSilver Modified Files: mx_announce.tpl Log Message: Fixed some named array with non-quoted indexes and code layout. Fixed last post date in announcement block. Index: mx_announce.tpl =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_coreblocks/templates/subSilver/mx_announce.tpl,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** mx_announce.tpl 6 Mar 2005 01:10:16 -0000 1.6 --- mx_announce.tpl 19 Apr 2005 15:55:39 -0000 1.7 *************** *** 1,29 **** <!-- BEGIN postrow --> ! <table width="{BLOCK_SIZE}" border="0" cellpadding="4" cellspacing="0" class="forumline"> ! <tr> ! <td class="row1" colspan="3"> ! <table cellSpacing="0" cellPadding="4" width="100%" border="0"> ! <tbody> ! <tr> ! <td class="row1"><A href="{postrow.U_URL}"> ! <img alt="{postrow.TITLE}" hspace="5" src="{postrow.IMAGE}" align="right" vspace="5" border="1"></a> ! <a href="{postrow.U_URL}"><b>{postrow.TITLE}</b></a><br><font ! size=-1><span class="postbody">{postrow.MESSAGE}</span></font></td></tr></tbody></table> ! </td> ! </tr> ! <tr> ! <td class="row1" width="100%" valign="top" colspan="3"> ! <table width="100%" border="0" cellspacing="1" cellpadding="0"> ! <tr> ! <td class="row2" align="center" valign="middle"><span class="gensmall">{postrow.L_AUTHOR} <a href="{U_PHPBB_ROOT_PATH}profile.php?mode=viewprofile&u={postrow.POSTER_ID}">{postrow.POSTER_NAME}</a></span></td> ! <td class="row2" align="center" valign="middle"><span class="gensmall">{postrow.L_POSTED} <br /> {postrow.FIRST_POST_TIME}</span></td> ! <td class="row2" align="center" valign="middle"><span class="postdetails">{postrow.L_REPLIES} <br /> {postrow.REPLIES}</span></td> ! <td class="row2" align="center" valign="middle"><span class="postdetails">{postrow.L_VIEWS} <br /> {postrow.VIEWS}</span></td> ! <td class="row2" align="center" valign="middle"><span class="postdetails">{postrow.L_LASTPOST} <br /> {postrow.LAST_POST_TIME}{postrow.LAST_POST_AUTHOR} {postrow.LAST_POST_IMG}</span></td> ! </tr> ! </table></td> ! </tr> ! </table> <!-- END postrow --> - --- 1,42 ---- <!-- BEGIN postrow --> ! <table width="{BLOCK_SIZE}" border="0" cellpadding="4" cellspacing="0" class="forumline"> ! <tr> ! <td class="row1"> ! <table width="100%" border="0" cellpadding="4" cellspacing="0"> ! <tbody> ! <tr> ! <td class="row1"> ! <p> ! <a href="{postrow.U_URL}"> ! <img src="{postrow.IMAGE}" align="right" hspace="5" vspace="5" border="1" title="{postrow.TITLE}" alt="{postrow.TITLE}" /> ! </a> ! <a href="{postrow.U_URL}" class="topictitle"> ! <img src="{postrow.TOPIC_FOLDER_IMG}" width="19" height="18" ! alt="{postrow.L_TOPIC_FOLDER_ALT}" title="{postrow.L_TOPIC_FOLDER_ALT}" ! border="0" align="absmiddle" /> ! {postrow.TITLE} ! </a> ! </p> ! <span class="postbody">{postrow.MESSAGE}</span> ! </td> ! </tr> ! </tbody> ! </table> ! </td> ! </tr> ! <tr> ! <td class="row1" width="100%" valign="top"> ! <table width="100%" border="0" cellpadding="2" cellspacing="1"> ! <tr> ! <td class="row2" align="center" valign="middle"><span class="gensmall">{postrow.L_AUTHOR} <a href="{U_PHPBB_ROOT_PATH}profile.php?mode=viewprofile&u={postrow.POSTER_ID}">{postrow.POSTER_NAME}</a></span></td> ! <td class="row2" align="center" valign="middle"><span class="gensmall">{postrow.L_POSTED} <br /> {postrow.FIRST_POST_TIME}</span></td> ! <td class="row2" align="center" valign="middle"><span class="postdetails">{postrow.L_REPLIES} <br /> {postrow.REPLIES}</span></td> ! <td class="row2" align="center" valign="middle"><span class="postdetails">{postrow.L_VIEWS} <br /> {postrow.VIEWS}</span></td> ! <td class="row2" align="center" valign="middle"><span class="postdetails">{postrow.L_LASTPOST} <br /> {postrow.LAST_POST_TIME}{postrow.LAST_POST_AUTHOR} {postrow.LAST_POST_IMG}</span></td> ! </tr> ! </table> ! </td> ! </tr> </table> + <br clear="all" /> <!-- END postrow --> |