Move Notify::TYPE_TAGSHARE
authornupplaPhil <admin+github@philipp.info>
Tue, 4 Feb 2020 21:14:42 +0000 (22:14 +0100)
committernupplaPhil <admin+github@philipp.info>
Wed, 5 Feb 2020 20:41:05 +0000 (21:41 +0100)
boot.php
include/enotify.php
src/Model/Notify/Type.php

index 6e5777e..f7d7c29 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -140,7 +140,6 @@ define('MAX_LIKERS',    75);
  * Email notification options
  * @{
  */
-define('NOTIFY_TAGSHARE',   256);
 define('NOTIFY_POKE',       512);
 define('NOTIFY_SHARE',     1024);
 
index 09b5e79..d3c4c74 100644 (file)
@@ -261,7 +261,7 @@ function notification($params)
                $itemlink =  $params['link'];
        }
 
-       if ($params['type'] == NOTIFY_TAGSHARE) {
+       if ($params['type'] == Notify\Type::TAG_SHARE) {
                $itemlink =  $params['link'];
                $subject = $l10n->t('[Friendica:Notify] %s tagged your post', $params['source_name']);
 
index c6f921b..b329d76 100644 (file)
@@ -25,4 +25,8 @@ class Type
        const PROFILE = 64;
        /** @var int Notification about being tagged in a post */
        const TAG_SELF = 128;
+       /** @var int Notification about being tagged
+        * @deprecated
+        */
+       const TAG_SHARE = 256;
 }