Strict Standards warning on line 97
-
I am using this plugin with the pro sorting add-on, with WP 3.7.1 and ACF 4.3.1, amongst other plugins.
I am getting this error when clicking on a year column to sort:
Strict Standards: Only variables should be passed by reference in /Users/rob/Documents/wwwroot/awards.ixda.org/wp-content/plugins/cac-addon-pro/classes/sortable/classes/post.php on line 97This is the original line 97:
$term = array_shift( array_values( $terms ) );
This is how I edited the line to avoid the error:
$tempVarOne = array_values( $terms ); $term = array_shift( $tempVarOne );
I don’t know if this is the ideal fix, but it works. Is anyone else getting the error? Is this the correct fix?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Strict Standards warning on line 97’ is closed to new replies.