That hack.. pretty much does as it says (erases all the ignored members from the user).
Here is your hack:
PHP Code:
$ivalue = $DB_site->query_first("SELECT ignorelist FROM user WHERE userid='$userid'");
if($ivalue[ignorelist] != ""){
$icount = count(explode(" ", $ivalue[ignorelist]));
} else {
$icount = 0;
}
Change
$userid to whatever appropriate variable should be used.
$icount is the variable that holds your answer.