autore:cisco007
apri includes/functions.php
cerca:
Codice: Seleziona tutto
// The following assigns all _common_ variables that may be used at any point in a template
Codice: Seleziona tutto
$sql = 'SELECT COUNT(post_id) as count
FROM ' . POSTS_TABLE . '
WHERE post_time > ' . $user->data['user_lastvisit'] . '
AND poster_id != ' . $user->data['user_id'];
$result = $db->sql_query($sql);
$post_count = $db->sql_fetchfield('count', false, $result);
$db->sql_freeresult($result);
Codice: Seleziona tutto
'U_SEARCH_SELF' => append_sid("{$phpbb_root_path}search.$phpEx", 'search_id=egosearch'),
Codice: Seleziona tutto
'NEW_POST_COUNT' => $post_count,
cerca:
Codice: Seleziona tutto
<a href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a>
Codice: Seleziona tutto
<a href="{U_SEARCH_NEW}">{L_SEARCH_NEW} ({NEW_POST_COUNT})</a>
cerca:
Codice: Seleziona tutto
<a href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a>
Codice: Seleziona tutto
<a href="{U_SEARCH_NEW}">{L_SEARCH_NEW} ({NEW_POST_COUNT})</a>
Refresha il template del subsilver se hai fatto la modifica allo stile
Per subsilver modificare solo il file overall_header per come illustrato dall'autore.