View Single Post
Old
  (#5 (permalink))
genoxide
Moderator
 
Status: Offline
Posts: 260
Join Date: Oct 2004
01-24-2005, 03:23 AM

Didn't notice that.
Open mainfile.php, find
function blocks($side) {
after the sql query
Code:
    $result = $db->sql_query($sql);
    while($row = $db->sql_fetchrow($result)) {
	$bid = intval($row['bid']);
	$title = $row['title'];
add
Code:
if (($side == 'c') or ($side == 'd')) { $title = ''; }
   
Reply With Quote