Jordo - I believe,
in ubblib posting:
if (-e "$vars_config{NonCGIPath}/$exact_path/$_[1].stick") {
$sticky_option = qq(

);
} else {
$sticky_option = qq(

);
Shouldn't this be:
if (-e "$vars_config{NonCGIPath}/$exact_path/$_[1].stick") {
$sticky_option = qq(

);
} else {
$sticky_option = qq(

);
& should be ;
Also in ubb_forum.cgi (for both the find and the replace)
if ($value >= $DPJulian) {
$count++;
} else {
delete($forum_topics{$key});
should be:
if(($value >= $DPJulian) or ($this_forum[15] eq "abc")) {
$count++;
} else {
delete($forum_topics{$key});
Also, in ubb_topic_maint.cgi (sub_top_topic,sub_detop_topic, and sub_bump_topic)
I know its not a big deal since its a cgi, not a pl file, but
should be
,
should be By the way, I also created a multihack file for this if you want, I can send it to you.