Index: openacs-4/packages/notifications/tcl/notification-procs-oracle.xql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/notifications/tcl/notification-procs-oracle.xql,v
diff -u -r1.2 -r1.3
--- openacs-4/packages/notifications/tcl/notification-procs-oracle.xql 3 Jun 2002 22:27:00 -0000 1.2
+++ openacs-4/packages/notifications/tcl/notification-procs-oracle.xql 1 Aug 2002 12:56:16 -0000 1.3
@@ -11,4 +11,15 @@
+
+
+ insert
+ into notification_user_map
+ (notification_id, user_id, sent_date)
+ values
+ (:notification_id, :user_id, sysdate)
+
+
+
+
Index: openacs-4/packages/notifications/tcl/notification-procs-postgresql.xql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/notifications/tcl/notification-procs-postgresql.xql,v
diff -u -r1.1 -r1.2
--- openacs-4/packages/notifications/tcl/notification-procs-postgresql.xql 25 Jun 2002 18:45:40 -0000 1.1
+++ openacs-4/packages/notifications/tcl/notification-procs-postgresql.xql 1 Aug 2002 12:56:16 -0000 1.2
@@ -9,4 +9,14 @@
+
+
+ insert
+ into notification_user_map
+ (notification_id, user_id, sent_date)
+ values
+ (:notification_id, :user_id, now())
+
+
+
Index: openacs-4/packages/notifications/tcl/notification-procs.xql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/notifications/tcl/notification-procs.xql,v
diff -u -r1.5 -r1.6
--- openacs-4/packages/notifications/tcl/notification-procs.xql 1 Jul 2002 19:35:30 -0000 1.5
+++ openacs-4/packages/notifications/tcl/notification-procs.xql 1 Aug 2002 12:56:16 -0000 1.6
@@ -60,14 +60,4 @@
-
-
- insert
- into notification_user_map
- (notification_id, user_id, sent_date)
- values
- (:notification_id, :user_id, sysdate)
-
-
-