count(): Parameter must be an array or an object that implements Countable
-
Version 4.38.
This one is an obvious error in the code:plugins/wptouch/core/menu-walkers.php, line 10:
if ( is_array( $menu_map ) && count( $menu_map > 0 ) ) {
should be
if ( is_array( $menu_map ) && count( $menu_map ) > 0 ) {
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘count(): Parameter must be an array or an object that implements Countable’ is closed to new replies.