Coding bug
-
arconix-portfolio/includes/metabox/init.php
, line 746reads:
elseif ( is_array( $meta_box['pages'] ) && count( $meta_box['pages'] === 1 ) )
but should be:
elseif ( is_array( $meta_box['pages'] ) && count( $meta_box['pages'] ) === 1 )
- The topic ‘Coding bug’ is closed to new replies.