hey, yo no empecé con los comentarios incisivos acerca de el soporte:
"grandes con esas ayudas.. "
ese es mi punto, hay que tener humildad o por lo menos consideración, que te parecería que en lugar de darte soporte simplemente contestara:
grande con esos topics..., no especifica lo que desea hacer...
pero bueno, mejor guardo silencio y doy soporte, solo para eso sirvo, ¿no?
este es ell codigo que muestra cada uno de los enlaces:
echo '
<a href="', $item['href'], '">', $item['subject'], '</a> <span class="smalltext">', $txt[525], ' ', $item['poster']['link'], $item['new'] ? '' : ' <a href="' . $scripturl . '?topic=' . $item['topic'] . '.msg' . $item['new_from'] . ';topicseen#new" rel="nofollow"><img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/new.gif" alt="' . $txt[302] . '" border="0" /></a>', '<br />[', $item['time'], ']</span><br />', empty($item['is_last']) ? '<hr />' : '';
exactamente aqui termina el enlace:
border="0" /></a>
simplemente tienes que agregar una imagen en html con el link hacia la ultima respuesta: <a href="', $item['href'], '"><img src="url de mi imagen" /></a>
quedando asi:
echo '
<a href="', $item['href'], '">', $item['subject'], '</a> <span class="smalltext">', $txt[525], ' ', $item['poster']['link'], $item['new'] ? '' : ' <a href="' . $scripturl . '?topic=' . $item['topic'] . '.msg' . $item['new_from'] . ';topicseen#new" rel="nofollow"><img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/new.gif" alt="' . $txt[302] . '" border="0" /></a> <a href="', $item['href'], '"><img src="url de mi imagen" /></a>', '<br />[', $item['time'], ']</span><br />', empty($item['is_last']) ? '<hr />' : '';
ahora, de esa manera, la imagen quedará pegada a el link, puedes agregarle espacios: para separarlos:
echo '
<a href="', $item['href'], '">', $item['subject'], '</a> <span class="smalltext">', $txt[525], ' ', $item['poster']['link'], $item['new'] ? '' : ' <a href="' . $scripturl . '?topic=' . $item['topic'] . '.msg' . $item['new_from'] . ';topicseen#new" rel="nofollow"><img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/new.gif" alt="' . $txt[302] . '" border="0" /></a> <a href="', $item['href'], '"><img src="url de mi imagen" /></a>', '<br />[', $item['time'], ']</span><br />', empty($item['is_last']) ? '<hr />' : '';
jugando con el codigo, puedes meter los valores en una tabla para que se vean mas ordenados.