Indefero

Indefero Commit Details


Date:2008-11-18 03:58:54 (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:79312f7242342bd391e2afb71706b01e966f2f08
Parents: 7e1f5bb0298651e62870f9a801b57bde1ae3ed1d
Message:Fixed some bad path to templates.

Changes:

File differences

src/IDF/Form/Register.php
131131
132132
133133
134
134
135135
136136
137137
'user'=> $user,
)
);
$tmpl = new Pluf_Template('register/confirmation-email.txt');
$tmpl = new Pluf_Template('idf/register/confirmation-email.txt');
$text_email = $tmpl->render($context);
$email = new Pluf_Mail($from_email, $user->email,
__('Confirm the creation of your account.'));
src/IDF/Views/Issue.php
165165
166166
167167
168
168
169169
170170
171171
......
276276
277277
278278
279
279
280280
281281
282282
$email = new Pluf_Mail(Pluf::f('from_email'), $oemail,
sprintf(__('Issue %s - %s (%s)'),
$issue->id, $issue->summary, $prj->shortname));
$tmpl = new Pluf_Template('issues/issue-created-email.txt');
$tmpl = new Pluf_Template('idf/issues/issue-created-email.txt');
$email->addTextMessage($tmpl->render($context));
$email->sendMail();
}
'url_base' => Pluf::f('url_base'),
)
);
$tmpl = new Pluf_Template('issues/issue-updated-email.txt');
$tmpl = new Pluf_Template('idf/issues/issue-updated-email.txt');
$text_email = $tmpl->render($context);
$email = new Pluf_Mail_Batch(Pluf::f('from_email'));
foreach ($interested as $user) {

Archive Download the corresponding diff file

Page rendered in 0.07449s using 13 queries.