diff options
Diffstat (limited to 'phpBB/includes/notification/method/jabber.php')
-rw-r--r-- | phpBB/includes/notification/method/jabber.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/phpBB/includes/notification/method/jabber.php b/phpBB/includes/notification/method/jabber.php index 664e387d61..fc43d8d4b9 100644 --- a/phpBB/includes/notification/method/jabber.php +++ b/phpBB/includes/notification/method/jabber.php @@ -24,6 +24,16 @@ if (!defined('IN_PHPBB')) class phpbb_notification_method_jabber extends phpbb_notification_method_email { /** + * Get notification method name + * + * @return string + */ + public function get_type() + { + return 'jabber'; + } + + /** * Notify method (since jabber gets sent through the same messenger, we let the jabber class inherit from this to reduce code duplication) * * @var mixed |