|
From: <vb...@us...> - 2003-09-13 06:59:34
|
Update of /cvsroot/webnotes/webnotes
In directory sc8-pr-cvs1:/tmp/cvs-serv24376
Modified Files:
note_add.php
Log Message:
Send email notifications to all moderators / administrators when new notes are submitted or updated.
M note_add.php
- Send email notification on updating bugs.
M core/email_api.php
- Support sending emails to all administrators/moderators on new notes / updated notes.
Index: note_add.php
===================================================================
RCS file: /cvsroot/webnotes/webnotes/note_add.php,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- note_add.php 12 Sep 2003 10:58:16 -0000 1.19
+++ note_add.php 13 Sep 2003 06:59:30 -0000 1.20
@@ -25,6 +25,7 @@
}
} else {
$result = note_update( $f_note_id, $f_email, $f_note );
+ email_note_updated( $f_note_id );
}
$t_page_info = page_get_info( page_where_id_equals( $f_page_id ) );
|