Indefero

Indefero Commit Details


Date:2008-11-16 05:11:13 (16 years 1 month ago)
Author:Loic d'Anterroches
Branch:dev, develop, feature-issue_links, feature.better-home, feature.content-md5, feature.diff-whitespace, feature.download-md5, feature.issue-links, feature.issue-of-others, feature.issue-summary, feature.search-filter, feature.webrepos, feature.wiki-default-page, master, release-1.1, release-1.2, release-1.3
Commit:97425529b1648048069ebe35994458c6e5c1a7cd
Parents: 7ca43e0ec2514a8878d544bc36290ec0d135123c
Message:Fixed to have the short name of the subject instead of InDefero.

Changes:

File differences

src/IDF/Views/Issue.php
163163
164164
165165
166
167
166
167
168168
169169
170170
......
281281
282282
283283
284
285
284
285
286286
287287
288288
);
$oemail = $issue->get_owner()->email;
$email = new Pluf_Mail(Pluf::f('from_email'), $oemail,
sprintf(__('Issue %s - %s (InDefero)'),
$issue->id, $issue->summary));
sprintf(__('Issue %s - %s (%s)'),
$issue->id, $issue->summary, $prj->shortname));
$tmpl = new Pluf_Template('issues/issue-created-email.txt');
$email->addTextMessage($tmpl->render($context));
$email->sendMail();
$email = new Pluf_Mail_Batch(Pluf::f('from_email'));
foreach ($interested as $user) {
if ($user->id != $request->user->id) {
$email->setSubject(sprintf(__('Updated Issue %s - %s (InDefero)'),
$issue->id, $issue->summary));
$email->setSubject(sprintf(__('Updated Issue %s - %s (%s)'),
$issue->id, $issue->summary, $prj->shortname));
$email->setTo($user->email);
$email->setReturnPath(Pluf::f('from_email'));
$email->addTextMessage($text_email);

Archive Download the corresponding diff file

Page rendered in 0.07584s using 13 queries.