Indefero

Indefero Commit Details


Date:2012-03-22 17:19:43 (12 years 8 months ago)
Author:Simon Holywell
Branch:develop
Commit:1b363e4b6d53941b73e949993970f481a178ed82
Parents: f7d75f1b943c5118beddd2ae865bf5ab48c387bb
Message:Hide overdue tag on issues that are now complete

Changes:

File differences

src/IDF/Views/Issue.php
10541054
10551055
10561056
1057
1057
1058
10581059
10591060
10601061
$s = '<img style="vertical-align: text-bottom;" src="'.Pluf_Template_Tag_MediaUrl::url('/idf/img/star.png').'" alt="'.__('On your watch list.').'" /> ';
}
$out = '';
if('' != $issue->due_dtime and (time() >= strtotime($issue->due_dtime))) {
if('' != $issue->due_dtime and (time() >= strtotime($issue->due_dtime))
and in_array($issue->status, $issue->get_project()->getTagIdsByStatus('open'))) {
$out = ' <span class="overdue">overdue</span>';
}
if (count($tags)) {

Archive Download the corresponding diff file

Page rendered in 0.07801s using 13 queries.