]> git.mxchange.org Git - friendica.git/commitdiff
NOTIFY_SYSTEM
authorfriendica <info@friendica.com>
Sun, 25 Mar 2012 11:37:09 +0000 (04:37 -0700)
committerfriendica <info@friendica.com>
Sun, 25 Mar 2012 11:37:09 +0000 (04:37 -0700)
boot.php
include/enotify.php

index ea88cd39b666e2f0afa66984e66087bc8b69abda..19661805c26093ac7bc494a509d4fd8044cf960e 100755 (executable)
--- a/boot.php
+++ b/boot.php
@@ -135,6 +135,9 @@ define ( 'NOTIFY_PROFILE',  0x0040 );
 define ( 'NOTIFY_TAGSELF',  0x0080 );
 define ( 'NOTIFY_TAGSHARE', 0x0100 );
 
+define ( 'NOTIFY_SYSTEM',   0x8000 );
+
+
 /**
  * various namespaces we may need to parse
  */
index a505f1f04011f2f4ff659a78a2a7546a47a7cb97..e4617ab496db52b680a5c7ae54319c0408bf7269 100755 (executable)
@@ -151,6 +151,11 @@ function notification($params) {
 
        if($params['type'] == NOTIFY_CONFIRM) {
 
+       }
+
+       if($params['type'] == NOTIFY_SYSTEM) {
+
+
        }
 
        // from here on everything is in the recipients language
@@ -223,7 +228,7 @@ function notification($params) {
        // send email notification if notification preferences permit
 
        require_once('bbcode.php');
-       if(intval($params['notify_flags']) & intval($params['type'])) {
+       if((intval($params['notify_flags']) & intval($params['type'])) || $params['type'] == NOTIFY_SYSTEM) {
 
                logger('notification: sending notification email');