You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
yblatti
changed the title
Can't use method return value in write context (PHP <= 5.4)
Can't use method return value in write context (PHP < 5.5)
Dec 17, 2019
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: