Ok I noticed a few instruction annomalise under the newer v6.3.1 release:
--|
1)|
--|
########===================
######## in ubb_forum.cgi :
########===================
########after:
$subject = $this_topic_data[3];
NO - in v6.3.1 you actually need to find this:
$subject = &PipeFixer($this_topic_data[3]);
----------------------------------------
2)|
--|
########===================
######## in cp_vars_style_core.pl (Template):
########===================
########after:
&RegField(qq!Delete Topic (Admin) Icon

!, "delete_topic", "yes", "30", "60", "", "$vars_style{delete_topic}");
NO - In v6.3.1 YOU ACTUALLY NEED TO FIND THIS NOW:
&RegField(qq!$vars_wordlets_cp{vars_stylecore_graphic_admin_delete}

!, "delete_topic", "yes", "30", "60", "", "$vars_style{delete_topic}");