From fa2ac1f27126292a24aa33136b2d3a7f1832ea47 Mon Sep 17 00:00:00 2001 From: Tristan Darricau Date: Sun, 10 Aug 2014 15:10:14 +0200 Subject: [ticket/11854] Use a set_name method instead of overriding get_service_name PHPBB3-11854 --- phpBB/phpbb/captcha/plugins/qa.php | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) (limited to 'phpBB/phpbb/captcha/plugins/qa.php') diff --git a/phpBB/phpbb/captcha/plugins/qa.php b/phpBB/phpbb/captcha/plugins/qa.php index 96cd99826d..a7ba994cc3 100644 --- a/phpBB/phpbb/captcha/plugins/qa.php +++ b/phpBB/phpbb/captcha/plugins/qa.php @@ -34,6 +34,11 @@ class qa protected $table_captcha_answers; protected $table_qa_confirm; + /** + * @var string name of the service. + */ + protected $service_name; + /** * Constructor * @@ -157,11 +162,21 @@ class qa } /** - * API function + * @return string the name of the service corresponding to the plugin */ function get_service_name() { - return 'core.captcha.plugins.qa'; + return $this->service_name; + } + + /** + * Set the name of the plugin + * + * @param string $name + */ + public function set_name($name) + { + $this->service_name = $name; } /** -- cgit v1.2.1