Closed GoogleCodeExporter closed 8 years ago
The ConfigurationDao has
addUser($name, $pw, $email, $permission, $expiration, $auth = NULL)
but RegistrationServices calls it with
$id = $this->env->configuration()->addUser($registration['name'],
$registration['password'], $registration['email'], $permission);
So the expiration field is missing. You need to change the
RegistrationServices.class.php line 118 into
$id = $this->env->configuration()->addUser($registration['name'],
$registration['password'], $registration['email'], $permission, NULL);
ie add NULL into the end.
Original comment by samuli.j...@gmail.com
on 28 Oct 2013 at 6:43
I'll have to close this issue since it is old version, but let me know if the
fix did not work.
Original comment by samuli.j...@gmail.com
on 28 Oct 2013 at 9:53
Apologies I went ahead and re-downloaded the RegistrationServices.class.php for
1.8.9.3 as mine was from a previous version. Worked like a charm! I'm all
set. Any chance of a dark theme for 2.0? I only ask because I went ahead and
customized my own style for pre-2.0.
Original comment by mariokr...@gmail.com
on 28 Oct 2013 at 4:38
Original issue reported on code.google.com by
mariokr...@gmail.com
on 28 Oct 2013 at 1:32Attachments: