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 expression "empty($this->views[current_filter()])" is used numerous times in the plugin. This will cause fatal errors on PHP versions less than 5.5. A simple remedy would be to evaluate current_filter() before calling empty, store the result in a variable, then do "empty($this->views[$current_filter])".
The text was updated successfully, but these errors were encountered:
The expression "empty($this->views[current_filter()])" is used numerous times in the plugin. This will cause fatal errors on PHP versions less than 5.5. A simple remedy would be to evaluate current_filter() before calling empty, store the result in a variable, then do "empty($this->views[$current_filter])".
The text was updated successfully, but these errors were encountered: