Quote:
Originally Posted by Breathex
Everyone needs this but no solution yet.
|
Add plugin:
Code:
<plugin active="1" executionorder="1">
<title>Quote Notification Cron</title>
<hookname>cron_script_cleanup_hourly</hookname>
<phpcode><![CDATA[
$vbulletin->db->query_write("
UPDATE `" . TABLE_PREFIX . "userfield` SET field" . $vbulletin->options['quotenotify_field'] . "='Private Message' where field" . $vbulletin->options['quotenotify_field'] . " = '';
");
]]></phpcode>
</plugin>
Go to admincp/cronadmin.php?do=modify - and run task "Hourly Cleanup".
You may also want to re-order the options so that "Private Message" is first in the list (using the "Profile Field Manager"), and be sure "Set Default" is on. Don't change any of the text (except for re-ordering the 3 possible settings), though, or the mod will stop working.