From 045ff6fb688bdfc73a6cf2b2e1fbcf7fb6aff62f Mon Sep 17 00:00:00 2001 From: Eliseu Amaro Date: Sun, 26 Dec 2021 20:57:21 +0000 Subject: [PATCH] [PLUGINS][XMPPNotifications] Fix typo --- plugins/XMPPNotifications/XMPPNotifications.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/XMPPNotifications/XMPPNotifications.php b/plugins/XMPPNotifications/XMPPNotifications.php index 6d8ba2e27d..c4cc533d65 100644 --- a/plugins/XMPPNotifications/XMPPNotifications.php +++ b/plugins/XMPPNotifications/XMPPNotifications.php @@ -42,7 +42,7 @@ class XMPPNotifications extends Plugin public function onAddNotificationTransport(&$form_defs): bool { $form_defs['XMPP'] = $form_defs['placeholder']; - $form_defs['XMPP'][] = $form_defs['placeholder']['save']('XMMP', 'save_xmpp'); + $form_defs['XMPP'][] = $form_defs['placeholder']['save']('XMPP', 'save_xmpp'); return Event::next; } }