From: Michael Date: Sat, 19 May 2018 05:59:43 +0000 (+0000) Subject: Fix missing $ X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=1cd6976faa8bd3299ac1e8880014de47e88f2a01;p=friendica.git Fix missing $ --- diff --git a/mod/removeme.php b/mod/removeme.php index dd0dc985a1..eb5c030c97 100644 --- a/mod/removeme.php +++ b/mod/removeme.php @@ -34,7 +34,7 @@ function removeme_post(App $a) // send notification to admins so that they can clean um the backups // send email to admins $admin_mails = explode(",", str_replace(" ", "", $a->config['admin_email'])); - foreach (admin_mails as $mail) { + foreach ($admin_mails as $mail) { $admin = dba::selectFirst('user', ['uid', 'language', 'email'], ['email' => $mail]); if (!DBM::is_result($admin)) { continue;