Indefero

Indefero Commit Details


Date:2012-04-13 05:19:46 (12 years 8 months ago)
Author:Simon Holywell
Branch:develop
Commit:b9c3ee1a09a0b365fc2d526bc22977932191f14d
Parents: 60cdd2224ff6d075b8b5e430df762e57a84f982a
Message:Issue #16 Make the date format uniform with the rest of Indefero

Changes:

File differences

src/IDF/Form/IssueUpdate.php
395395
396396
397397
398
398
399399
400400
401401
$changes['ow'] = (is_null($owner)) ? '---' : $owner->login;
}
if (trim($this->issue->due_dtime) != trim($this->cleaned_data['due_dtime'])) {
$changes['du'] = trim($this->cleaned_data['due_dtime']);
$changes['du'] = Pluf_Template_dateFormat($this->cleaned_data['due_dtime']);
}
// Issue relations - additions
foreach ($this->cleaned_data['_added_issue_relations'] as $verb => $ids) {
src/IDF/Views/Issue.php
11561156
11571157
11581158
1159
1159
1160
1161
11601162
11611163
11621164
*/
function IDF_Views_Issue_DueDate($field, $issue, $extra='')
{
return $issue->$field;
if($issue->$field) {
return Pluf_Template_dateFormat($issue->$field);
}
}
/**

Archive Download the corresponding diff file

Page rendered in 0.08305s using 14 queries.