I get this error (attached) when I select fields from webform submitted data in the Views.

Any idea why and how I am getting it and what is the workaround

Thanks in advance
errorI

Comments

iuk2’s picture

StatusFileSize
new30.12 KB

sorry forgot to attach the error

iuk2’s picture

Issue summary: View changes

error image added

iuk2’s picture

Issue summary: View changes

2

gedur’s picture

Issue summary: View changes
Status: Active » Needs review
StatusFileSize
new939 bytes

The bug is visible on PHP 5.3+ Call-time pass-by-reference.

  function options_form(&$form, &$form_state) {
    parent::options_form(&$form, &$form_state);

This sould be this way: without &

  function options_form(&$form, &$form_state) {
    parent::options_form($form, $form_state);

Call-time pass-by-reference is deprecated and in this script is not necessary a complex change because the parent already receives the params by reference.

Attaching a patch to fix this.

Please review!

munyiva’s picture

Thanks this worked for me.