I'm getting the following warnings.
Strict warning: Declaration of eva_plugin_display_entity::options_submit() should be compatible with that of views_plugin_display::options_submit() in _registry_check_code() (line 2789 of C:\xampp\htdocs\..\includes\bootstrap.inc).
Strict warning: Declaration of views_plugin_argument_validate_node::options_submit() should be compatible with that of views_plugin_argument_validate::options_submit() in require_once() (line 10 of C:\xampp\htdocs\..\sites\all\modules\views\modules\node\views_plugin_argument_validate_node.inc).
Notice: Undefined index: validate_argument_node_access_op in views_plugin_argument_validate_node->convert_options() (line 67 of C:\xampp\htdocs\..\sites\all\modules\views\modules\node\views_plugin_argument_validate_node.inc).
Attached is my view where I use Eva.
| Comment | File | Size | Author |
|---|---|---|---|
| related-items.txt | 9.08 KB | dilari |
Comments
Comment #1
likewhoa commentedConfirmed here on git sources.
Comment #2
eaton commentedLooks like this is a one-line tweak; the function signature for
function options_submit(&$form, &$form_state) { }didn't have the ampersand before the first parameter, and voila! Errors. Thanks for catching it!