]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
on broadcast jabber and sms to people with the flags set
authorEvan Prodromou <evan@controlyourself.ca>
Wed, 10 Dec 2008 02:47:06 +0000 (21:47 -0500)
committerEvan Prodromou <evan@controlyourself.ca>
Wed, 10 Dec 2008 02:47:06 +0000 (21:47 -0500)
darcs-hash:20081210024706-5ed1f-fd54b76630656f7d4f7617309d2e4f87f25b006b.gz

lib/jabber.php
lib/mail.php

index 3d388bd01dbed13ca1fac68d03a484bb95b280d0..ab0fd6af8663a6490e3df5dbc9c088e0894c1380 100644 (file)
@@ -207,7 +207,7 @@ function jabber_broadcast_notice($notice) {
 
        $profile->free();
        unset($profile);
-       
+
        $sent_to = array();
        $conn = jabber_connect();
 
@@ -230,7 +230,7 @@ function jabber_broadcast_notice($notice) {
        }
 
        $user->free();
-       
+
     # Now, get users subscribed to this profile
 
        $user = new User();
@@ -238,7 +238,8 @@ function jabber_broadcast_notice($notice) {
                                 'FROM user JOIN subscription ON user.id = subscription.subscriber ' .
                                 'WHERE subscription.subscribed = ' . $notice->profile_id . ' ' .
                                 'AND user.jabber is not null ' .
-                                'AND user.jabbernotify = 1 ');
+                                'AND user.jabbernotify = 1 ' .
+                 'AND subscription.jabber = 1 ');
 
        while ($user->fetch()) {
                if (!array_key_exists($user->id, $sent_to)) {
@@ -252,7 +253,7 @@ function jabber_broadcast_notice($notice) {
        }
 
        $user->free();
-       
+
        return true;
 }
 
index 313040ca252987792c2a4fe9be06df30426058db..a7cbab8589665daa7343ce171d892e66d5947037 100644 (file)
@@ -167,7 +167,8 @@ function mail_broadcast_notice_sms($notice) {
                                 'ON user.id = subscription.subscriber ' .
                                 'WHERE subscription.subscribed = ' . $notice->profile_id . ' ' .
                                 'AND user.smsemail IS NOT NULL ' .
-                                'AND user.smsnotify = 1');
+                                'AND user.smsnotify = 1 ' .
+                 'AND subscription.sms = 1 ');
 
        while ($user->fetch()) {
                common_log(LOG_INFO,
@@ -226,7 +227,6 @@ function mail_confirm_sms($code, $nickname, $address) {
        mail_send($recipients, $headers, $body);
 }
 
-
 function mail_notify_nudge($from, $to) {
     common_init_locale($to->language);
        $subject = sprintf(_('You\'ve been nudged by %s'), $from->nickname);
@@ -247,8 +247,6 @@ function mail_notify_nudge($from, $to) {
        return mail_to_user($to, $subject, $body);
 }
 
-
-
 function mail_notify_message($message, $from=NULL, $to=NULL) {
 
        if (is_null($from)) {