mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-28 05:53:17 +00:00
Remove unused App paramter in securemail addon
This commit is contained in:
parent
feb7722f72
commit
2ea40dc897
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ function securemail_settings_post(array &$b)
|
||||||
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'securemail', 'enable', $enable);
|
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'securemail', 'enable', $enable);
|
||||||
|
|
||||||
if (!empty($_POST['securemail-test'])) {
|
if (!empty($_POST['securemail-test'])) {
|
||||||
$res = DI::emailer()->send(new SecureTestEmail(DI::app(), DI::config(), DI::pConfig(), DI::baseUrl()));
|
$res = DI::emailer()->send(new SecureTestEmail(DI::config(), DI::pConfig(), DI::baseUrl()));
|
||||||
|
|
||||||
// revert to saved value
|
// revert to saved value
|
||||||
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'securemail', 'enable', $enable);
|
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'securemail', 'enable', $enable);
|
||||||
|
|
Loading…
Reference in a new issue