|
From: Florin C B. <ory...@us...> - 2013-04-17 03:10:13
|
Update of /cvsroot/mxbb/core/modules/mx_phpbb3blocks/templates/_core In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv11292/_core Modified Files: _core.cfg mx_announce.html Log Message: updating phpBB3 announce Index: _core.cfg =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_phpbb3blocks/templates/_core/_core.cfg,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** _core.cfg 27 Aug 2008 19:56:32 -0000 1.7 --- _core.cfg 17 Apr 2013 03:10:11 -0000 1.8 *************** *** 80,83 **** --- 80,88 ---- $mx_images['mx_forum_locked'] = $images['forum_locked']; + // Announce Pics + $mx_images['mx_reply'] = "$current_module_images/post_comment.gif"; + $mx_images['mx_post_print'] = "$current_module_images/post_print.gif"; + $mx_images['mx_post_view'] = "$current_module_images/post_view.gif"; + // // Poll/Statistics Block Index: mx_announce.html =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_phpbb3blocks/templates/_core/mx_announce.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** mx_announce.html 5 Jul 2008 22:38:24 -0000 1.1 --- mx_announce.html 17 Apr 2013 03:10:11 -0000 1.2 *************** *** 34,37 **** --- 34,45 ---- <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> + <tr> + <td class="row2" align="center" valign="middle"><span class="postdetails"><a href="{postrow.U_VIEW}"> <img src="{postrow.VIEW_IMG}" alt="{L_VIEW_FULL_ARTICLE}" title="{L_VIEW_FULL_ARTICLE}" /></a></span></td> + <td class="row2" align="center" valign="middle"><span class="postdetails"><a href="{postrow.U_PRINT}"> <img src="{postrow.PRINT_IMG}" alt="{L_PRINT_IT}" title="{L_PRINT_IT}" /></a></span></td> + <!-- IF postrow.ALLOW_POST --> + <td class="row2" align="center" valign="middle"><span class="postdetails"><a href="{postrow.U_REPLY}"> <img src="{postrow.REPLY_IMG}" alt="{L_POST_COMMENTS}" title="{L_POST_COMMENTS}" /></a></span></td> + <!-- ENDIF --> + <td class="row2" align="center" valign="middle"><span class="gensmall"><a href="#top" onclick="window.scrollTo(0,0); return false">{L_BACK_TO_TOP}</a></span></td> + </tr> </table> </td> |