mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-06 15:14:58 +00:00
set comment in notification mail
This commit is contained in:
parent
5246c3a329
commit
bcff843186
|
@ -109,7 +109,7 @@ if ($_POST["approvalType"] == "ind" || $_POST["approvalType"] == "grp") {
|
|||
$params['version'] = $version;
|
||||
$params['folder_path'] = $folder->getFolderPathPlain();
|
||||
$params['status'] = getApprovalStatusText($_POST["approvalStatus"]);
|
||||
$params['comment'] = $_POST['comment'];
|
||||
$params['comment'] = strip_tags($_POST['comment']);
|
||||
$params['username'] = $user->getFullName();
|
||||
$params['sitename'] = $settings->_siteName;
|
||||
$params['http_root'] = $settings->_httpRoot;
|
||||
|
|
|
@ -108,7 +108,7 @@ if ($_POST["reviewType"] == "ind" || $_POST["reviewType"] == "grp") {
|
|||
$params['version'] = $version;
|
||||
$params['folder_path'] = $folder->getFolderPathPlain();
|
||||
$params['status'] = getReviewStatusText($_POST["reviewStatus"]);
|
||||
$params['comment'] = $comment;
|
||||
$params['comment'] = strip_tags($_POST['comment']);
|
||||
$params['username'] = $user->getFullName();
|
||||
$params['sitename'] = $settings->_siteName;
|
||||
$params['http_root'] = $settings->_httpRoot;
|
||||
|
|
Loading…
Reference in New Issue
Block a user