On change de module de Captcha

This commit is contained in:
2020-10-29 11:09:29 +01:00
parent 46b1cae84e
commit d5c6342c37
124 changed files with 1001 additions and 10260 deletions

View File

@@ -0,0 +1,10 @@
<?php
class ContactformOverride extends Contactform
{
public function sendMessage() {
Hook::exec('actionContactFormSubmitBefore');
if ( !sizeof($this->context->controller->errors)) {
parent::sendMessage();
}
}
}