I found the problem which I notified them trough the ticket system.
It looks like this has something to do with the Captcha which I currently have disabled in the dt donate configuration. When I enable Captcha (which I do not want to do since donations are for registered users) things work fine.
The problem seems to happen on line 136 of the paypal.php file found in the models directory. The line is:
- Code: Select all
if (isset($_SESSION['register']['secCheck']) && $_SESSION['register']['secCheck'] == 1) {
A temp fix for the problem is on line 135 add:
- Code: Select all
$_SESSION['register']['secCheck'] = 1;