class_stopforumspamchecker.php (mybb_1822) | : | class_stopforumspamchecker.php (mybb_1823) | ||
---|---|---|---|---|
skipping to change at line 21 | skipping to change at line 21 | |||
/** | /** | |||
* Registration checker to check registrations against the StopForumSpam.com dat abase. | * Registration checker to check registrations against the StopForumSpam.com dat abase. | |||
*/ | */ | |||
class StopForumSpamChecker | class StopForumSpamChecker | |||
{ | { | |||
/** | /** | |||
* The base URL format to the stop forum spam API. | * The base URL format to the stop forum spam API. | |||
* | * | |||
* @var string | * @var string | |||
*/ | */ | |||
const STOP_FORUM_SPAM_API_URL_FORMAT = 'http://api.stopforumspam.org/api? username=%s&email=%s&ip=%s&f=json&confidence'; | const STOP_FORUM_SPAM_API_URL_FORMAT = 'https://api.stopforumspam.org/api ?username=%s&email=%s&ip=%s&f=json&confidence'; | |||
/** | /** | |||
* @var pluginSystem | * @var pluginSystem | |||
*/ | */ | |||
private $plugins = null; | private $plugins = null; | |||
/** | /** | |||
* The minimum weighting before a user is considered to be a spammer. | * The minimum weighting before a user is considered to be a spammer. | |||
* | * | |||
* @var double | * @var double | |||
*/ | */ | |||
private $min_weighting_before_spam = null; | private $min_weighting_before_spam = null; | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added |