View Single Post
  #3 (permalink)  
Old 12-14-2004, 11:43 AM
Rica Rica is offline
Junior Member
 
Join Date: Dec 2004
Location: France
Posts: 10
Send a message via MSN to Rica
Or edit blocks/blocks-Modules.php

Code:
#
# FIND
#

	$content .= "
<center>"._NOACTIVEMODULES."
";
	$content .= "<font class=\"tiny\">"._FORADMINTESTS."</font></center>
";
	$result6 = $db->sql_query("SELECT title, custom_title FROM ".$prefix."_modules WHERE active='0' ORDER BY title ASC");
	while ($row6 = $db->sql_fetchrow($result6)) {
	    $mn_title = stripslashes($row6['title']);
	    $custom_title = $row6['custom_title'];
	    $mn_title2 = ereg_replace("_", " ", $mn_title);
	    if ($custom_title != "") {
		$mn_title2 = $custom_title;
	    }
	    if ($mn_title2 != "") {
		$content .= "<big>&middot;</big><a href=\"modules.php?name=$mn_title\">$mn_title2</a>
\n";
		$dummy = 1;
	    } else {
		$a = 1;
	    }
	}
	if ($a == 1 AND $dummy != 1) {
    	    $content .= "<big>&middot;</big>"._NONE."
\n";
	}

#
# and DELETE or comment out this part
#
Reply With Quote