Skip to content

Warning: count(): Parameter must be an array or an object that implements Countable  #66

@Redolance

Description

@Redolance

This error appears when no repeatable filed are created.
Warning: count(): Parameter must be an array or an object that implements Countable in :
admin-page-class\admin-page-class.php on line 1398
You can fix this just by change the order of checking if on line 1398 from :
if (count($meta) > 0 && is_array($meta) ){
to
if ( is_array($meta) && count($meta) > 0 ){
so If $meta is empty it will stop cheking for count.
Hope this will help someone.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions