I get the following message after opening or saving the 'Arrange fields - Form' page.
* Strict warning: Only variables should be passed by reference in arrange_fields_display_form() (line 569 of C:\wamp\www\contracts2\sites\all\modules\arrange_fields\arrange_fields.module).
* Strict warning: Only variables should be passed by reference in arrange_fields_display_form() (line 585 of C:\wamp\www\contracts2\sites\all\modules\arrange_fields\arrange_fields.module).
Comments
Comment #1
richardp commentedThanks for the heads up, but unfortunately I don't think there is much I can do about that. Those strict warnings are generated by PHP when I am invoking built-in Drupal functions like so:
As such, I don't think there's anything I can do to change it.
If everything else is working for you, I'd suggest just lowering your site's error_reporting() level to exclude strict warnings. They are really only helpful for programmers (for catching typos and the like), and they do not affect the normal functioning of your site. So for a production site, it's best to only show errors. Notices and Strict warnings usually just get in the way.
Thanks again,
Richard
Comment #2
chalee commented@richardp: Thanks for the advice.
Comment #3
chi commented@richardp: drupal_render() expect their parameters to be passed by reference.
Comment #4
richardp commentedSorry for the very late reply, but I believe this was fixed in a recent version, so I am marking the issue fixed.