Ich weiss nun nicht, ob die RC2 darür rechte vergibt .. aber es ist echt einfach machbar, was Du willst.
Du must nur eine kleinigkeit in der MessageIndex.template.php deines Themes zu ändern:
Suche nach:
foreach ($context['topics'] as $topic)
{
echo '
<tr class="windowbg2">
<td valign="middle" align="center" width="5%">
<img src="', $settings['images_url'], '/topic/', $topic['class'], '.gif" alt="" />
</td>
<td valign="middle" align="center" width="4%">
<img src="', $topic['first_post']['icon_url'], '" alt="" />
</td>
<td class="windowbg" valign="middle">
', $topic['first_post']['link'];
und ändere die letzte Zeile in:
<td class="windowbg" valign="middle">
', ($context['user']['is_logged']) ? $topic['first_post']['link'] : $topic['first_post']['subject'] , '';
Edit:
Grad gesehen .. da gibts auch noch ein Last_Post ..
if ($settings['images_url'] != $settings['theme_url'] . '/images' || file_exists($settings['theme_dir'] . '/images/icons/last_post.gif'))
echo '
<a href="', $topic['last_post']['href'], '"><img src="', $settings['images_url'], '/icons/last_post.gif" alt="', $txt[111], '" title="', $txt[111], '" border="0" style="float: right;" /></a>';
echo '
<span class="smalltext">
', $topic['last_post']['time'], '<br />
', $txt[525], ' ', $topic['last_post']['member']['link'], '
</span>
</td>';
Muss auch nach dem Schema geändert werden.
Und .. das ist dann für ALLE Board. Willst Du das so haben? Ansonsten wird aufwendiger ...
Fel