Quote:
Originally Posted by MarcoH64
PHP Code:
$dm_object->validfields['hack_poster'] = array(TYPE_UINT, REQ_NO);
Ofcourse you will need to adjust the values.
|
Where would this be added to? the area added in forum.php was done by a plugin:
Code:
<plugin active="1">
<title>Forum Admin Tables</title>
<hookname>forumadmin_edit_form</hookname>
<phpcode><![CDATA[print_table_header($vbphrase['enable_disable_features_hacks']);
print_yes_no_row('Enable Hack Poster', 'forum[hack_poster]', $forum['hack_poster']);
print_yes_no_row('Show Uninstall Button', 'forum[hack_poster_private]', $forum['hack_poster_private']);]]></phpcode>
</plugin>