Thanks Logician. I got the popup textarea fixed.
I got everything set up, seems to be working with everything but the index.php. I get the following error:
Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting ']' in
... /index.php(429) : eval()'d code on line 2
I'm assuming that the message means there is something wrong with line 429, not sure if this is right or not. Looking at it in my editer I see the following (line 429 is bold):
Code:
// Logician Hack: Dynamic Forum Announcements Hack
if ($vboptions['dynamic_fha'] OR $vboptions['dynamic_popup']) {require_once('./includes/functions_bbcodeparse.php');}
if ($vboptions['dynamic_fha'])
{
eval('$dynamic_fha = "' . addslashes($vboptions['dynamic_fha']) . '";');
$dynamic_fha=str_replace("\\'", "'", $dynamic_fha);
$dfh_announcement_announcementtopaste = dynamic_a($dynamic_fha);
if (trim($dfh_announcement_announcementtopaste)) {eval('$dfh_announcement = "' . fetch_template('dfh_announcement') . '";');}
}
if ($vboptions['dynamic_popup'])
{
eval('$dynamic_popup = "' . addslashes($vboptions['dynamic_popup']) . '";');
$dynamic_popup=str_replace("\\'", "'", $dynamic_popup);
$dfh_announcement_popuptopaste = dynamic_a($dynamic_popup);
if (trim($dfh_announcement_popuptopaste))
{
eval('$dfh_announcement_headercode = "' . fetch_template('dfh_announcement_headercode') . '";');
eval('$dfh_announcement_popup = "' . fetch_template('dfh_announcement_popup') . '";');
}
}
// Logician Hack: Dynamic Forum Announcements Hack
I copied and pasted from the instructions, so it should be fine, it worked fine when I first installed it. I stared at it for an hour or so last night, but I can't see anything wrong with it.
Thanks for any help or ideas.