From: Adam Magness Date: Tue, 21 Nov 2017 00:03:58 +0000 (-0500) Subject: Indentation fix X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=69fd3c60b0bb7a54f34378462b9211c238f4f0d4;p=friendica.git Indentation fix errant indentation change --- diff --git a/mod/item.php b/mod/item.php index 4422628682..97c26b5f9b 100644 --- a/mod/item.php +++ b/mod/item.php @@ -1037,13 +1037,13 @@ function item_post(App $a) { $message = '' . $link . $html . $disclaimer . ''; include_once 'include/html2plain.php'; $params = array ( - 'fromName' => $a->user['username'], - 'fromEmail' => $a->user['email'], - 'toEmail' => $addr, - 'replyTo' => $a->user['email'], - 'messageSubject' => $subject, - 'htmlVersion' => $message, - 'textVersion' => html2plain($html.$disclaimer), + 'fromName' => $a->user['username'], + 'fromEmail' => $a->user['email'], + 'toEmail' => $addr, + 'replyTo' => $a->user['email'], + 'messageSubject' => $subject, + 'htmlVersion' => $message, + 'textVersion' => html2plain($html.$disclaimer) ); Emailer::send($params); }