Ok, what have I done wrong here in the plugins.php? Here's what I have at the moment:
/* Signatures */
function parseUserInfo_user_custom2($av){
/* Default version - replacing only [br] to breakes, no BB codes */ //$sig=str_replace("\n",'<br>',$av);
/* Version with standard BB codes + [br] to breakes */ require_once($GLOBALS['pathToFiles'].'bb_codes.php'); $admin=($GLOBALS['cols'][0] ==1?1:0); $sig=enCodeBB(str_replace("\n",'<br>','<img>','<a>','<p>','<i>','<b>', '<u>',$av),$admin);
return $sig; }
/* --Signatures */ |