You are here

function antispam_increase_counter in AntiSpam 6

Same name and namespace in other branches
  1. 7 antispam.module \antispam_increase_counter()

Increase today's counter value for the specified counter type by 1

4 calls to antispam_increase_counter()
antispam_callback_set_spam_status in ./antispam.module
Menu callback; mark/unmark content as spam.
antispam_confirm_multiple_operation_submit in ./antispam.admin.inc
confirm_form callback; perform the actual operation against selected content.
antispam_nodeapi in ./antispam.module
Implementation of hook_nodeapi().
_antispam_comment_form_submit in ./antispam.module
Comment form submit callback; check for spam.

File

./antispam.module, line 365

Code

function antispam_increase_counter($counter_type) {
  antispam_set_counter($counter_type, antispam_get_counter($counter_type) + 1);
}