github bbalet/jorani v0.1.1
V0.1.1 Stable release

latest releases: v1.0.2, v1.0.0, v0.6.5...
10 years ago

We fixed an issue related to mod_security Apache module (this module blocks the JS script jquery.cookie) by renaming the name of the script.
We fixed problems of e-mail encoding in French (we now rely on PHPMailer).
E-mail settings are now into a separate config file.
No database update is needed.

Known issues :
If you run LMS with PHP 5.6 you'll get this notice message :

Severity: Notice
Message: Only variable references should be returned by reference
Filename: core/Common.php
Line Number: 257

LMS works fine but this message appears on every page. To solve this issue, the best way is to patch the line 257 of {lms path}/system/core/Common.php :

return $_config[0] =& $config;

With this code :

$_config[0] =& $config;
return $_config[0]; 

Don't miss a new jorani release

NewReleases is sending notifications on new releases.