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
Fatal error: Can't use method return value in write context in /htmlbase/components/com_k2/views/item/view.html.php on line 468.
This comes from the use of empty() on a return value. empty() can only be used on return from PHP>=5.5. (https://www.php.net/manual/en/function.empty.php)
empty()
Since Joomla! is still compatible with PHP 5.3.10+ (https://downloads.joomla.org/technical-requirements). I suggest we do the same here.
The text was updated successfully, but these errors were encountered:
Can't use method return value in write context
Closed by #507
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Fatal error: Can't use method return value in write context in /htmlbase/components/com_k2/views/item/view.html.php on line 468.
This comes from the use of
empty()
on a return value.empty()
can only be used on return from PHP>=5.5. (https://www.php.net/manual/en/function.empty.php)Since Joomla! is still compatible with PHP 5.3.10+ (https://downloads.joomla.org/technical-requirements). I suggest we do the same here.
The text was updated successfully, but these errors were encountered: