ok, found the solution on a Google group and it works
the file that has the problem is:
includes/classes/db/mysql/query_factory.php
Just replace all these:
ereg('^[0-9]', $key)
with this:
preg_match('/^[0-9]/', $key)
ok, found the solution on a Google group and it works
the file that has the problem is:
includes/classes/db/mysql/query_factory.php
Just replace all these:
ereg('^[0-9]', $key)
with this:
preg_match('/^[0-9]/', $key)