Active
Project:
Admin Notify
Version:
5.x-1.1
Component:
User interface
Priority:
Critical
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
27 Jan 2009 at 06:46 UTC
Updated:
28 Feb 2009 at 09:55 UTC
Jump to comment: Most recent file
Comments
Comment #1
FreeFox commentedYep, i confirm, same error :(
Comment #2
whathits commentedComment #3
volkiz commentedchange line 39 :
'#default_value' => variable_get('admin_notify_node_types', $admin_mail),
with this :
'#default_value' => $admin_mail,
Comment #4
volkiz commentedand line 121:
$admin_email = variable_get('email', 'admin@contrastsofnewzealand.co.nz');
to
$admin_email = variable_get('admin_notify_email', '');
SO THIS MODULE CAN ACTUALLY WORK !
Comment #5
mpeal commentedI got the same error message as Chris (whathits), and the two edits by volkiz removed the error.
One problem remains: the email address field keeps getting filled with the default email address set in Site Information, and attempts to change it in admin_notify are ignored.
Comment #6
volkiz commentedyes sorry , i forgot one thing to update
change line #34
$admin_mail = variable_get('site_mail', ini_get('sendmail_from'));
to:
$admin_mail = variable_get('admin_notify_email','');
fully patched module attached on this comment.