On input_formats.module, line 627 there is this call:
drupal_process_form($form_id, &$form, &$form_state);
But this produces a warning
Call-time pass-by-reference has been deprecated
Ampersand should be removed:
drupal_process_form($form_id, $form, $form_state);
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | input_formats-881056.patch | 773 bytes | pcambra |
Comments
Comment #1
wiifmThis is a major pain, as using drush it spits this warning out on every vset/vdel command
Any idea on when a new beta could be released (even if it only addresses this issue)?
Comment #2
pcambraI'm attaching a little patch just in case someone else is using this module as a part of a install profile.
Comment #3
jaydub commentedApplied and verified the patch removes the PHP warning.
Comment #4
dagmarCommitted thanks!