]> git.mxchange.org Git - friendica-addons.git/commitdiff
[impressum] notes and email field were exchanged
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Sat, 15 Oct 2022 15:49:28 +0000 (17:49 +0200)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Sat, 15 Oct 2022 15:49:28 +0000 (17:49 +0200)
impressum/impressum.php

index ae5e2637f929e2dfeb270ee053b4c33923c59b07..69beba599b01af62dac9adf20de4a898b9a3d2d4 100644 (file)
@@ -98,8 +98,8 @@ function impressum_addon_admin_post (App $a)
        DI::config()->set('impressum', 'owner', strip_tags(trim($_POST['owner'] ?? '')));
        DI::config()->set('impressum', 'ownerprofile', strip_tags(trim($_POST['ownerprofile'] ?? '')));
        DI::config()->set('impressum', 'postal', strip_tags(trim($_POST['postal'] ?? '')));
-       DI::config()->set('impressum', 'email', strip_tags(trim($_POST['notes'] ?? '')));
-       DI::config()->set('impressum', 'notes', strip_tags(trim($_POST['email'] ?? '')));
+       DI::config()->set('impressum', 'email', strip_tags(trim($_POST['email'] ?? '')));
+       DI::config()->set('impressum', 'notes', strip_tags(trim($_POST['notes'] ?? '')));
        DI::config()->set('impressum', 'footer_text', strip_tags(trim($_POST['footer_text'] ?? '')));
 }