Quote:
Originally Posted by kjhkjh
great hack, but I want to enable it on each of hundreds of forums... is the only way with this to do it one by one? Would take a long time.... 
|
This is an easy fix. Open up the plugin with a text editor and do the following:
Search for:
Code:
$vbulletin->db->query_write("ALTER TABLE " . TABLE_PREFIX . "forum ADD `afsuotpt` SMALLINT( 5 ) NOT NULL default '0'");
Replace with:
Code:
$vbulletin->db->query_write("ALTER TABLE " . TABLE_PREFIX . "forum ADD `afsuotpt` SMALLINT( 5 ) NOT NULL default '1'");
Save the plugin file, and then upload to your forum. By changing the 0 to a 1 it turns on the option for all forums by default.
Mark