diff --git a/libraries/src/Captcha/Captcha.php b/libraries/src/Captcha/Captcha.php index 5a39d7a440af6..e8974b84f275a 100644 --- a/libraries/src/Captcha/Captcha.php +++ b/libraries/src/Captcha/Captcha.php @@ -41,7 +41,7 @@ class Captcha implements DispatcherAwareInterface private $captcha; /** - * Editor Plugin name + * Captcha Plugin name * * @var string * @since 2.5 @@ -233,10 +233,10 @@ private function _load(array $options = []) // Build the path to the needed captcha plugin $name = InputFilter::getInstance()->clean($this->name, 'cmd'); - // Boot the editor plugin + // Boot the captcha plugin $this->captcha = Factory::getApplication()->bootPlugin($name, 'captcha'); - // Check if the editor can be loaded + // Check if the captcha can be loaded if (!$this->captcha) { throw new \RuntimeException(Text::sprintf('JLIB_CAPTCHA_ERROR_PLUGIN_NOT_FOUND', $name)); }