To make this work with the existing StopForumSpam API key from Spam-O-Matic, I changed the following in your code:
Quote:
Originally Posted by djbaxter
PHP Code:
if ($vbulletin->options["vbstopforumspam_apikey"])
...
<input name="api_key" type="hidden" value="' . $vbulletin->options['vbstopforumspam_apikey'] . '">
|
To:
PHP Code:
if ($vbulletin->options["glowhostspamomatic_apikey"])
...
<input name="api_key" type="hidden" value="' . $vbulletin->options['glowhostspamomatic_apikey'] . '">
Just replacing vbstopforumspam_apikey with glowhostspamomatic_apikey. That seems to work.
Thanks! This helps out my moderators quite a lot.