8
0
miroir de https://git.d3data.de/3rdParty/captcha-module.git synchronisé 2025-07-05 15:45:01 +02:00

Basic changes made for smarty and base code

Cette révision appartient à :
Gabriel Peleskei
2023-07-18 14:59:11 +00:00
Parent 2b8493d37a
révision bd415ccb3e
44 fichiers modifiés avec 760 ajouts et 768 suppressions

Voir le fichier

@ -0,0 +1,21 @@
<?php
declare(strict_types=1);
namespace OxidProfessionalServices\Captcha\Application\Controller;
use OxidProfessionalServices\Captcha\Application\Shared\Captcha;
class ForgotPasswordController extends ForgotPasswordController_parent
{
use Captcha;
public function forgotpassword()
{
if (!$this->getCaptcha()->passCaptcha()) {
return false;
}
return parent::forgotpassword();
}
}