I've been reading about this, and I think I just need convert this old code into the newer code.
Old 2.X code
PHP Code:
if (!isset($parseurl)) {
if ($foruminfo[forumid]!=22) {
$parseurlchecked="CHECKED";
} else {
$parseurlchecked = '';
}
}
New 3.0 code
PHP Code:
if (!$checked['parseurl'])
{
$checked['parseurl'] = HTML_CHECKED;
}
I assume I just need an if/else statement in there, as in the 2.X code, right? I'm just not sure how to do this, since the code is a bit different in the new version. Anyone care to help me out with a bit of 2.X to 3.0 translation?