Indentation fix

errant indentation change
This commit is contained in:
Adam Magness 2017-11-20 19:03:58 -05:00
parent 1726ededac
commit 69fd3c60b0
1 changed files with 7 additions and 7 deletions

View File

@ -1037,13 +1037,13 @@ function item_post(App $a) {
$message = '<html><body>' . $link . $html . $disclaimer . '</body></html>';
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);
}