Changing the Subject Line: and/or Message: in admin/settings/emailpage.
There are no errors reported in the logs when you submit the admin page.
Changing the Subject Line: and/or Message: in admin/settings/emailpage.
There are no errors reported in the logs when you submit the admin page.
Comments
Comment #1
icenogle commentedPiling on: Changing the "Sender Address" doesn't work, either. By "doesn't work," I mean that the change isn't saved when you "Save Configuration."
As the original submitter noted, there are no errors flagged in the watchdog.
Comment #2
buddaThe fix is simple.
The problem is all settings are being stored in ONE Drupal variable as an array. This is because of a mis-configuration in the Forms API.
Check out function
emailpage_settings()line 185:-The correct code should be:
The '#tree' puts all form values in to an array. You don't want that!
I'd make a patch for the bug, but it's too simple to be worth the hassle!
Comment #3
Patrick Nelson commentedbudda,
Fair comment!
"Patch" applied and all is well. Thanks for the tip.
Comment #4
buddaOk, so it's not a "true" patch, but the fix needs to be added to CVS code anyway.
Comment #5
zoo33 commentedI included this fix in a large patch here: /node/62209#comment-96634.
Comment #6
darren ohFixed in CVS commit 45506.
Comment #7
darren oh