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>'; $message = '<html><body>' . $link . $html . $disclaimer . '</body></html>';
include_once 'include/html2plain.php'; include_once 'include/html2plain.php';
$params = array ( $params = array (
'fromName' => $a->user['username'], 'fromName' => $a->user['username'],
'fromEmail' => $a->user['email'], 'fromEmail' => $a->user['email'],
'toEmail' => $addr, 'toEmail' => $addr,
'replyTo' => $a->user['email'], 'replyTo' => $a->user['email'],
'messageSubject' => $subject, 'messageSubject' => $subject,
'htmlVersion' => $message, 'htmlVersion' => $message,
'textVersion' => html2plain($html.$disclaimer), 'textVersion' => html2plain($html.$disclaimer)
); );
Emailer::send($params); Emailer::send($params);
} }