Pues en ese caso no tengo ni idea de que puede activar, he buscado en phpbb3portal y unicamente he encontrado una variación,
Comprueba si el código relativo a mensajes activos en recent.php es igual a este, en caso contrario sustitúyelo por este
- Código: Seleccionar todo
//
// Recent active topic
//
$last_post_time_sql = ($sort_days) ? ' AND t.topic_last_post_time > ' . (time() - ($sort_days * 24 * 3600)) : '';
$sql = 'SELECT topic_title, forum_id, topic_id, topic_time, topic_first_poster_name
FROM ' . TOPICS_TABLE . '
WHERE topic_status <> ' . FORUM_LINK . "
$last_post_time_sql
AND topic_moved_id = 0
AND topic_approved = 1
AND topic_type = " . POST_NORMAL . '
' . $sql_where . '
ORDER BY topic_time DESC';
$result = $db->sql_query_limit($sql, $config['portal_max_topics']);
while( ($row = $db->sql_fetchrow($result)) && ($row['topic_title']) )
{
// auto auth
if ( ($auth->acl_get('f_read', $row['forum_id'])) || ($row['forum_id'] == '0') )
{
$template->assign_block_vars('active_topics', array(
'TITLE' => character_limit($row['topic_title'], $config['portal_recent_title_limit']),
'FULL_TITLE' => censor_text($row['topic_title']),
'DATE' => $user->format_date($row['topic_time']),
'POSTER' => $row['topic_first_poster_name'],
'U_VIEW_TOPIC' => append_sid("{$phpbb_root_path}viewtopic.$phpEx", 'f=' . $row['forum_id'] . '&t=' . $row['topic_id'])
));
}
}
$db->sql_freeresult($result);
Y sustituye el contenido de active.html por este
- Código: Seleccionar todo
<!-- $Id: active.html,v 1.1 2007/08/19 19:35:12 angelside Exp $ //-->
<div class="panel">
<div class="inner">
<span class="corners-top"><span></span></span>
<h3>{L_ACTIVE_TOPIC}</h3>
<!-- BEGIN active_topics -->
<a href="{active_topics.U_VIEW_TOPIC}" title="{active_topics.FULL_TITLE}"><strong>{active_topics.TITLE}</strong></a><br />
{active_topics.DATE}<br />
{L_POSTED_BY}: {active_topics.POSTER}<br />
<!-- END lactive_topics -->
<hr />
<a href="search.php?search_id=active_topics">{ALL_ACTIVE_TOPIC}</a>
<span class="corners-bottom"><span></span></span>
</div>
</div>
<br style="clear:both" />
Haz copias de seguridad de ambos archivos y si no funciona vuelve a colocar los originales. Si aún así no funciona, ya no se que más hacer.