Thanks for your reply. I did that last night after reading posts re: osC having the same issues. The first error I had to get through was on query_factory.
You replace this line (found several times within the file)
Code:
if (!ereg('^[0-9]', $key)) {
with this:
Code:
if (!preg_match('/^[0-9]/', $key)) {
Now once I fixed that error, then I started seeing the rest and trust me there are a ton of them. I'm going to have to go file by file using error checking until I find them all. The most prominent at the moment are in the init_sanitize and in classes/temp_func.
A major patch needs to be release above and beyond what has been release to address all of this. Once I clean this all out, not sure what else I will find. Just going to take it one error at a time. This is going to take awhile...

Ruth
Bookmarks