No dice. This is how the bottom of functions.php looks post the above eidt being applied.......
Code:
// Logician Dynamic Forum Announcements Hack
function dynamic_a($logician_dfa_incoming1)
{
extract ($GLOBALS);
while (preg_match("/\[\[(.*)\]\](.*)\[\[(\/\\1)\]\]/siU",$logician_dfa_incoming1,$matches14))
{
/*
echo "<br> conditional parse- 1=".$matches14[1];
echo '$matches14[0]'.$matches14[0].'<br><br>';// => Whole text
echo '$matches14[1]'.$matches14[1].'<br><br>';// => conditional itself
echo '$matches14[2]'.$matches14[2].'<br><br>';// => Text between conditional
echo '$matches14[3]'.$matches14[3].'<br><br>';// => conditional close tag (with closing /)
*/
@eval ('if ('.stripslashes($matches14[1]).') { $eval_deger= "1"; } else { $eval_deger= "0"; }');
if ($eval_deger==1) //if conditional applied
{
//$logician_dfa_incoming1=preg_replace("/\[\[(.*)\]\](.*)\[\[(\/\\1)\]\]/siU", "\\2", $logician_dfa_incoming1);
//echo "conditional $matches14[1] applied!<br>" ;
$matches14[2]=bbcodeparse(trim($matches14[2]),1,1,1,1);
eval("\$dfh_announcement1 = \"".gettemplate("dfh_announcement")."\";");
return $dfh_announcement1;
}
else //conditional not applied so let's delete it so that it wont be matched in preg_match again..
{$logician_dfa_incoming1=str_replace($matches14[0], '', $logician_dfa_incoming1);}
}
//echo "no conditional found or applies<br>";
$matches14[2]=trim($logician_dfa_incoming1);
if (trim($matches14[2])) {$matches14[2]=bbcodeparse($matches14[2],1,1,1,1);eval("\$dfh_announcement1 = \"".gettemplate("dfh_announcement")."\";");}
return $dfh_announcement1;
}
// Logician Dynamic Forum Announcements Hack
?>
There's no other hacks in the file.
I changed announcement text and saved it too.