

Mod böyle ama düzenleme yapmama rağmen başaramadım (fazla kod bilgim yok)
Kod: Tümünü seç
#
#-----[ OPEN ]------------------------------------------
#
portal.php
#
#-----[ FIND ]------------------------------------------
#
$open_bracket = '';
$close_bracket = '';
$read_full = '';
}
$template->assign_block_vars('fetchpost_row', array(
#
#-----[ AFTER, ADD ]------------------------------------------
#
'NEWSIMG' => $fetchposts[$i]['forum_id'].".gif",
#
#-----[ FIND ]------------------------------------------
#
$i = intval($HTTP_GET_VARS['article']);
$template->assign_block_vars('fetchpost_row', array(
#
#-----[ AFTER, ADD ]------------------------------------------
#
'NEWSIMG' => $fetchposts[$i]['forum_id'].".gif",
#
#-----[ OPEN ]------------------------------------------
#
templates/YOUR_TEMPLATE/portal_body.tpl
#
#-----[ FIND ]------------------------------------------
#
<!-- BEGIN fetchpost_row -->
<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
<tr>
<td class="catHead" height="25"><span class="genmed"><b>{L_ANNOUNCEMENT}: {fetchpost_row.TITLE}</b></span></td>
</tr>
<tr>
<td class="row2" align="left" height="24"><span class="gensmall">
#
#-----[ AFTER, ADD ]------------------------------------------
#
<img src="{fetchpost_row.NEWSIMG}">
#-----[ OPEN ]------------------------------------------
#
fetchposts.php
#
#-----[ FIND ]------------------------------------------
#
// fetch all postings
//
$posts = array();
if ($row = $db->sql_fetchrow($result))
{
$i = 0;
do
{
#
#-----[ AFTER, ADD ]------------------------------------------
#
$posts[$i]['forum_id'] = $row['forum_id'];
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM