check that you put the code in the class_bbcode.php file after this.
Code:
* Returns whether this parser is a WYSIWYG parser. Useful to change
* behavior slightly for a WYSIWYG parser without rewriting code.
*
* @return bool True if it is; false otherwise
*/
function is_wysiwyg()
{
return false;
}
An not after this marked in red:
Code:
* Returns whether this parser is a WYSIWYG parser. Useful to change
* behavior slightly for a WYSIWYG parser without rewriting code.
*
* @return bool True if it is; false otherwise
*/
function is_wysiwyg()
{
return false;
}
}
So it should look like this:
Code:
Code:
* Returns whether this parser is a WYSIWYG parser. Useful to change
* behavior slightly for a WYSIWYG parser without rewriting code.
*
* @return bool True if it is; false otherwise
*/
function is_wysiwyg()
{
return false;
}
/**
* ed2k link start.
*/
function handle_ed2k_links($text)
{
if(!$this->is_wysiwyg())
{
$text=preg_replace ("/(<\/?)(\w+)([^>]*>)/e","", $text);
$list=explode("ed2k://",$text);
$rand=rand(100, 999);
foreach ( $list as $key => $ed2k )
{
if (!empty($ed2k))
{
$ed2k = "ed2k://".$ed2k;
$ed2k_array=explode("|",$ed2k);
$total+=$ed2k_array[3];
$totalper=$ed2k_array[3];
if($totalper>(1024*1024*1024*1024)){
$totalper=round($totalper/1024/1024/1024/1024,2);
if(!$totalper){continue; }
$totalper.="TB";
}elseif($totalper>(1024*1024*1024)){
$totalper=round($totalper/1024/1024/1024,2);
if(!$totalper){continue; }
$totalper.="GB";
}elseif($totalper>(1024*1024)){
$totalper=round($totalper/1024/1024,2);
if(!$totalper){continue; }
$totalper.="MB";
}else{
$totalper=round($totalper/1024,2);
if(!$totalper){continue; }
$totalper.="KB";
}
++$i;
$key1=iif($i%2, 1, 2);
$ed2k_array[2]=rawurldecode($ed2k_array[2]);
eval('$ed2kbit .= "' . fetch_template('ed2kbit') . '";');
}
}
if($total>(1024*1024*1024*1024)){
$total=round($total/1024/1024/1024/1024,2);
$total.="TB";
}elseif($total>(1024*1024*1024)){
$total=round($total/1024/1024/1024,2);
$total.="GB";
}elseif($total>(1024*1024)){
$total=round($total/1024/1024,2);
$total.="MB";
}else{
$total=round($total/1024,2);
$total.="KB";
}
$key2=iif($key%2, 1, 2);
eval('$text = "' . fetch_template('ed2k') . '";');
}
else
{
$text ="[ed2k]".$text."[/ed2k]" ;
}
return $text;
}
/**
* ed2k link end.
*/
}
There are two of these "}" in the code you search for at the end of it. Put the hack code before the very last one