Hi,
There is a compatibility issue inside Neologism with php 5.3 and higher. This issue has been found in « neologism.module » file at the line 1035. It’s just a warning but now in the recents versions of php it’s recommanded to instanciate each objects before to use them. For example, make this :
$ex = new Ex();
$ex->foo = "toto";
Instead of just :
$ex->foo = "toto";
Hope this will help. I muted this in using the « @ » character but I hope that will be just a temporary solution :-)
Best regards.
Julien Plu.