Well, I don't like the label "Search results for query:" if I actually clicked "View recent messages" on the main page. I didn't enter a search text, so this is not a search result at all (ok, it is a search on the DB, but not for the "normal" user). This fixes this behaviour:<br /><br />In /dosearch.php look for:<pre><font class="small">code:</font><hr> $printwords = htmlspecialchars($Words);</pre><hr> <br />replace with:<pre><font class="small">code:</font><hr> if (!$Words) {<br /> $printwords = "{$ubbt_lang['VIEW_PAST']}";<br /> } else {<br /> $printwords = "{$ubbt_lang['SEARCH_RES']} \"" . htmlspecialchars($Words) . "\"";<br /> }</pre><hr><br /><br />Still in /dosearch.php look for:<pre><font class="small">code:</font><hr>// Send the header <br /> $html -> send_header("{$ubbt_lang['SEARCH_RES']}: $printwords",$Cat,0,$user);</pre><hr><br />replace with:<pre><font class="small">code:</font><hr>// Send the header<br /> $html -> send_header("$printwords",$Cat,0,$user);</pre><hr><br /><br />In /templates/default/dosearch.tmpl find:<pre><font class="small">code:</font><hr>{$ubbt_lang['SEARCH_RES']}: $printwords</pre><hr><br />replace with:<pre><font class="small">code:</font><hr>$printwords</pre><hr><br /><br />Finally in /languages/.../dosearch.php add 1 line:<pre><font class="small">code:</font><hr>$ubbt_lang['VIEW_PAST'] = "Recent messages";</pre><hr>