Mod the my plan
http://www.ipbaccess...v101-t3160.html
// -----------------------------------------
// BL23-Hide Links v1.0.1
// http://www.ipbaccess.com
// Author : Zafer BAHADIR
// Creating Date : 15-08-2007
// Update 18-08-2004
//-----------------------------------------
if($this->ipsclass->vars['bl_hide_links_on']){
if (in_array($this->ipsclass->member['mgroup'],
explode(',', $this->ipsclass->vars['bl_hide_links_group']))){
$gelen=$row['post'];
$post_array = preg_split('/(<a.*?<*a>)/', $gelen, 65535, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
for ($i=0; $i<=count($post_array); $i++){
if(strstr($post_array[$i],"<a"))
$gelen=str_replace($post_array[$i], $this->ipsclass->vars['bl_hide_links_replace'], $gelen);
}
$row['post']=$gelen;
}
}
Edited by zbahadir, 06 March 2008 - 12:58 PM.