Open patatagit opened 1 year ago
I fixed it by applying these changes to the file modules/mod_qlform/helper/QlformHelper.php
line 98 from if (!$this->checkIfCustomExists('Joomla\Module\Qlform\Site\Helper\modQlformSomethingElse')) return false; to if (!$this->checkIfCustomExists('QlformNamespace\Module\Qlform\Site\Helper\modQlformSomethingElse')) return false;
line 113 from if (!$this->checkIfCustomExists('Joomla\Module\Qlform\Site\Helper\modQlFormSomethingCompletelyDifferent')) return false; to if (!$this->checkIfCustomExists('QlformNamespace\Module\Qlform\Site\Helper\modQlFormSomethingCompletelyDifferent')) return false;
line 304 from if (!$this->checkIfCustomExists('Joomla\Module\Qlform\Site\Helper\modQlformValidation')) return false; to if (!$this->checkIfCustomExists('QlformNamespace\Module\Qlform\Site\Helper\modQlformValidation')) return false;
line 1147 from if ($this->checkIfCustomExists('Joomla\Module\Qlform\Site\Helper\modQlformPreprocessData')) $this->processData = true; to if ($this->checkIfCustomExists('QlformNamespace\Module\Qlform\Site\Helper\modQlformPreprocessData')) $this->processData = true;
Thanks => applied theses changes to qlform, so go and get your new version v1.2.4
Many thanks!
Hi, I have a problem when I try to set to yes "Preprocess data" and "Do something else" options. I also proceeded to rename both file modQlformPreprocessData.php and modQlformSomethingElse.php When I send the form occurs this error:
Can you help me? Thanks