]> git.mxchange.org Git - friendica-addons.git/commitdiff
added missing )
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Thu, 1 Jul 2021 05:47:48 +0000 (07:47 +0200)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Thu, 1 Jul 2021 05:47:48 +0000 (07:47 +0200)
This is a followup to PR  #1142 adding a missing ) to the if statement.

securemail/securemail.php

index 0c0b282b2cd9614bc5744cfb8ded83e830aea53e..88e486bb092a30223002cb46f6cef38bfb24e6ef 100644 (file)
@@ -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()));