From: Tobias Diekershoff Date: Thu, 1 Jul 2021 05:47:48 +0000 (+0200) Subject: added missing ) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=fb4687b6df579aaed076bf463d461d6ded965c47;p=friendica-addons.git added missing ) This is a followup to PR #1142 adding a missing ) to the if statement. --- diff --git a/securemail/securemail.php b/securemail/securemail.php index 0c0b282b..88e486bb 100644 --- a/securemail/securemail.php +++ b/securemail/securemail.php @@ -77,7 +77,7 @@ function securemail_settings_post(App &$a, array &$b) $enable = (!empty($_POST['securemail-enable']) ? 1 : 0); DI::pConfig()->set(local_user(), 'securemail', 'enable', $enable); - if ($_POST['securemail-submit'] == 'test' { + if ($_POST['securemail-submit'] == 'test') { $res = DI::emailer()->send(new SecureTestEmail(DI::app(), DI::config(), DI::pConfig(), DI::baseUrl()));