alptraum | 05-03-2008 19:17 | SMF Anasayfada Son mesajları ziyaretçilerden Gizleme http://www.muhakeme.net/forum/forumr...ekiinlo8-1.jpg
Modifications.turkish.php yi aç bul üstüne ekle Kod:
$txt[1234] = 'Son Mesajları Görüntülemek için Lütfen <a href="' . $scripturl . '?action=login"><font color=red><b>giriş yapın</b></font><a href="' . $scripturl . '?action=register"> Yada <font color=red><b>üye olun</b></font></a> '; Boardindex.template.php de bul Kod:
// Show some basic information about the number of posts, etc.
echo '
</td>
<td class="windowbg" valign="middle" align="center" style="width: 12ex;"><span class="smalltext">
', $board['posts'], ' ', $txt[21], ' <br />
', $board['topics'],' ', $txt[330], '
</span></td> devamina ekle Kod:
';
if ($context['user']['is_logged'])
{
echo' bul Kod:
/* The board's and children's 'last_post's have:
time, timestamp (a number that represents the time.), id (of the post), topic (topic id.),
link, href, subject, start (where they should go for the first unread post.),
and member. (which has id, name, link, href, username in it.) */
if (!empty($board['last_post']['id']))
echo '
<b>', $txt[22], '</b> ', $txt[525], ' ', $board['last_post']['member']['link'] , '<br />
', $txt['smf88'], ' ', $board['last_post']['link'], '<br />
', $txt[30], ' ', $board['last_post']['time'];
echo '
</span>
</td> Devamına ekle Kod:
';
}
else
{
echo'
<td class="windowbg2" valign="middle" width="22%">
<span class="smalltext">', $txt[1234], '</span>
</td>';
}
echo' Recent.template.phpyi aç bul üstüne ekle |