mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/17414] Remove uninstall method from captcha plugins
PHPBB-17414
This commit is contained in:
parent
8429145241
commit
3676e895f3
3 changed files with 0 additions and 18 deletions
|
@ -179,11 +179,6 @@ abstract class captcha_abstract
|
||||||
$db->sql_freeresult($result);
|
$db->sql_freeresult($result);
|
||||||
}
|
}
|
||||||
|
|
||||||
function uninstall()
|
|
||||||
{
|
|
||||||
$this->garbage_collect(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
function validate()
|
function validate()
|
||||||
{
|
{
|
||||||
global $user;
|
global $user;
|
||||||
|
|
|
@ -323,14 +323,6 @@ class qa
|
||||||
$db->sql_freeresult($result);
|
$db->sql_freeresult($result);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* API function - we don't drop the tables here, as that would cause the loss of all entered questions.
|
|
||||||
*/
|
|
||||||
function uninstall()
|
|
||||||
{
|
|
||||||
$this->garbage_collect(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* API function - see what has to be done to validate
|
* API function - see what has to be done to validate
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -179,11 +179,6 @@ class recaptcha extends captcha_abstract
|
||||||
return $hidden_fields;
|
return $hidden_fields;
|
||||||
}
|
}
|
||||||
|
|
||||||
function uninstall()
|
|
||||||
{
|
|
||||||
$this->garbage_collect(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
function validate()
|
function validate()
|
||||||
{
|
{
|
||||||
if (!parent::validate())
|
if (!parent::validate())
|
||||||
|
|
Loading…
Add table
Reference in a new issue