We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In .../application/config/config.php line 398 .... $config['version']= 0.7.1; ....
the are no parenthesis around the string "0.7.1", so I get this error messge at index.php:
Parse error: syntax error, unexpected T_DNUMBER in .../application/config/config.php on line 398
I guess it should be .... $config['version']= '0.7.1'; ....
With this changes the page loads without ayn errors.
Best regards, Stefan
The text was updated successfully, but these errors were encountered:
Thanks,this problem has been fixed.
Sorry, something went wrong.
No branches or pull requests
In .../application/config/config.php line 398
....
$config['version']= 0.7.1;
....
the are no parenthesis around the string "0.7.1", so I get this error messge at index.php:
Parse error: syntax error, unexpected T_DNUMBER in .../application/config/config.php on line 398
I guess it should be
....
$config['version']= '0.7.1';
....
With this changes the page loads without ayn errors.
Best regards,
Stefan
The text was updated successfully, but these errors were encountered: