Indentation fix
errant indentation change
This commit is contained in:
parent
1726ededac
commit
69fd3c60b0
1 changed files with 7 additions and 7 deletions
14
mod/item.php
14
mod/item.php
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue