Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Warning: count(): Parameter must be an array #42

Closed
beejay41 opened this issue Nov 18, 2018 · 1 comment
Closed

Warning: count(): Parameter must be an array #42

beejay41 opened this issue Nov 18, 2018 · 1 comment
Labels

Comments

@beejay41
Copy link

The following occurs after submitting form, but doesn't prevent email being sent:
Warning: count(): Parameter must be an array or an object that implements Countable in /.../plugins/p01-contact/src/P01contact_Form.php on line 215

Small typo:
if (count($loads > 1) && $loads[1] - $loads[0] < $this->config('min_sec_after_load')) { ...
should be (I assume):
if (count($loads) > 1 && $loads[1] - $loads[0] < $this->config('min_sec_after_load')) {

@nliautaud
Copy link
Owner

Fixed, thanks !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants