diff options
author | Andreas Gohr <andi@splitbrain.org> | 2015-07-31 13:17:39 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2015-07-31 13:17:39 +0200 |
commit | 34d1de72006386b5ac410123c9a9bd2deaa17677 (patch) | |
tree | d4fb811e54c621708fe4ef13e4722e2e0c3dc626 /inc | |
parent | 0b55591d7a88c7a2447c650dd998caf8103c8344 (diff) | |
download | rpg-34d1de72006386b5ac410123c9a9bd2deaa17677.tar.gz rpg-34d1de72006386b5ac410123c9a9bd2deaa17677.tar.bz2 |
removed more deprecated code
Diffstat (limited to 'inc')
-rw-r--r-- | inc/subscription.php | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/inc/subscription.php b/inc/subscription.php index 8b6dcb27e..74bec656d 100644 --- a/inc/subscription.php +++ b/inc/subscription.php @@ -691,19 +691,3 @@ class Subscription { $data['addresslist'] = trim($addresslist.','.implode(',', $result), ','); } } - -/** - * Compatibility wrapper around Subscription:notifyaddresses - * - * for plugins emitting COMMON_NOTIFY_ADDRESSLIST themselves and relying on on this to - * be the default handler - * - * @param array $data event data for - * - * @deprecated 2012-12-07 - */ -function subscription_addresslist(&$data) { - dbg_deprecated('class Subscription'); - $sub = new Subscription(); - $sub->notifyaddresses($data); -} |