madeon (madeon) wrote in changelog,
madeon
madeon
changelog

[livejournal] r22560: LJSUP-12902: Create notifications for re...

Committer: sbelyaev
LJSUP-12902: Create notifications for reposts
U   trunk/bin/worker/birthday-notify
Modified: trunk/bin/worker/birthday-notify
===================================================================
--- trunk/bin/worker/birthday-notify	2012-08-03 08:33:06 UTC (rev 22559)
+++ trunk/bin/worker/birthday-notify	2012-08-03 08:54:15 UTC (rev 22560)
@@ -2,6 +2,7 @@
 use strict;
 use lib "$ENV{LJHOME}/cgi-bin";
 use LJ::NewWorker::Manual;
+use POSIX;
 LJ::NewWorker::Manual::BirthdayNotify->start();
 
 ################################################################################
@@ -136,7 +137,18 @@
         debug("Firing off notification for " . $u->user);
         LJ::Event::Birthday->new($u)->fire;
 
-        LJ::Event::Birthday->new($u, $advance_notify)->fire;
+        my     #  0    1    2     3     4    5     6     7  
+            ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =
+                                            gmtime(time);
+
+        $sec  = 0;
+        $min  = 0;
+        $hour = ($hour % 12);
+
+        my $notify_time 
+            = POSIX::mktime($sec, $min, $hour, $mday, $mon, $year, $wday, $yday);
+
+        LJ::Event::Birthday->new($u, $notify_time)->fire;
         $ct++;
     }
 

Tags: livejournal, madeon, sbelyaev
Subscribe

  • Post a new comment

    Error

    Anonymous comments are disabled in this journal

    default userpic

    Your reply will be screened

    Your IP address will be recorded 

  • 0 comments