1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 16:56:44 +02:00

[ticket/17413] Add migration for turnstile and acp demo

PHPBB-17413
This commit is contained in:
Marc Alexander
2024-10-12 20:36:12 +02:00
parent 52acd2709b
commit b55b42d09f
7 changed files with 146 additions and 3 deletions

View File

@@ -63,6 +63,17 @@ class legacy_wrapper implements plugin_interface
return false;
}
/**
* {@inheritDoc}
*/
public function set_name(string $name): void
{
if (method_exists($this->legacy_captcha, 'set_name'))
{
$this->legacy_captcha->set_name($name);
}
}
/**
* {@inheritDoc}
*/