
Adding friendfinder profiles to Wating Content

go to modules/system/blocks/system_blocks.php

go to line 126 after "}" and add the following lines


	if (XoopsModule::moduleExists("friendfinder")) {
		$result = $xoopsDB->query("SELECT COUNT(*) FROM ".$xoopsDB->prefix("friendfinder")." WHERE active=0");
		if ( $result ) {
			list($num) = $xoopsDB->fetchRow($result);
    			$block['content'] .= "<strong><big>&middot;</big></strong>&nbsp;<a href='".XOOPS_URL."/modules/friendfinder/admin/view-all.php'>"._MB_SYSTEM_FINDER."</a>: $num<br />\n";
		}
	}

then go to modules/system/language/your default sytem language/blocks.php

and add the following line:

define("_MB_SYSTEM_FINDER","New friendfinder profiles");