20
Quote:
Dave_L wrote:
Search for "PHP5". There have already been several recent posts on this issue.
This not only the T_CLONE issues, you must do these steps.
However, this is easy to fix.
The main problem is
get_class() function in PHP5 has difference form PHP4.
PHP4 return lowercase, and PHP5 return original notation.
Find in source code
if (get_class(...) == '...')
or
if (get_class(...) != '...')
and replace with
if (strtolower(get_class(...)) == '...')
or
if (strtolower(get_class(...)) != '...')
Now your XOOPS work with PHP5
Good luck