line 123 of sites/all/modules/ctools/views_content/plugins/content_types/views.inc views_content_views_content_type_render()
Whats interesting is below on line 132 we check to make sure $panel_args is an array
if ($conf['panel_args'] && is_array($panel_args)) {
$args = array_merge($panel_args, $args);
}
Related issue as it touches the same bit of code: #764006: PHP error when viewing panel
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | ctools-1334894-1.patch | 719 bytes | mikeytown2 |
Comments
Comment #1
mikeytown2 commentedComment #2
japerryWouldn't this overwrite args if there is more than one key?
Comment #3
mikeytown2 commentedYep and that's what it already does; overwrite $args in multiple places
http://cgit.drupalcode.org/ctools/tree/views_content/plugins/content_typ...
Not sure on the direction you want to take it. I was going for less php warnings.
Comment #4
japerryIndeed, I see what you mean. Fixed!