mahara-contributors team mailing list archive
-
mahara-contributors team
-
Mailing list archive
-
Message #00335
[Bug 585613] Re: A langstring in class ActivityTypeArtefactCommentFeedback needs to be replaced.
** Changed in: mahara
Milestone: None => 1.3.0
** Changed in: mahara
Assignee: (unassigned) => Richard Mansfield (richard-mansfield)
** Changed in: mahara
Status: New => Fix Committed
--
A langstring in class ActivityTypeArtefactCommentFeedback needs to be replaced.
https://bugs.launchpad.net/bugs/585613
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Status in Mahara ePortfolio: Fix Committed
Bug description:
Langstring "feedbacknotificationhtml" in class ActivityTypeArtefactCommentFeedback needs to be replaced with "feedbacknotificationtext" as below.
File: artefact/comment/lib.php
Line: 970
[before]
// Email
... skip ...
$this->users[0]->emailmessage = get_string_from_language(
$lang, 'feedbacknotificationhtml', 'artefact.comment',
$authorname, $title, $posttime, trim(html2text($body)), $this->url
);
[after]
// Email
... skip ...
$this->users[0]->emailmessage = get_string_from_language(
$lang, 'feedbacknotificationtext', 'artefact.comment',
$authorname, $title, $posttime, trim(html2text($body)), $this->url
);
References