Shouldn't this:
PHP Code:
if (isset($action)==0)
actually be this?
PHP Code:
if (isset($action)==0) {
else I get a parse error. And sorry, that didn't fix it.
EDIT: My server is using PHP 4.2.1 BTW.
Quote:
Originally posted by Erwin
Okay, I have an idea:
In contact.php, find:
PHP Code:
if (!isset($action)) {
And replace with:
PHP Code:
if (isset($action)==0)
It should now work.
I have fixed up the ZIP file in the first post.
|