Indefero

Indefero Commit Details


Date:2010-12-23 10:26:34 (13 years 11 months ago)
Author:Loïc d'Anterroches
Branch: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:777937b70c2cf013a285707036ec4f45352445fe
Parents: 97bc383bc03e4f2ca8a1626aa6af1fe5e4d114fe
Message:Fixed apparence of the description of the labels for the default ticket labels.

Changes:

File differences

src/IDF/Form/IssueCreate.php
121121
122122
123123
124
124
125
125126
126127
127128
128129
129130
130131
131
132
133
132134
133135
134136
$predefined_type = 'Type:Defect';
foreach ($predefined as $tag) {
if (strpos($tag, 'Type:') === 0) {
$predefined_type = $tag;
$predefined_type = explode('=', $tag, 2);
$predefined_type = trim($predefined_type[0]);
break;
}
}
$predefined_priority = 'Priority:Medium';
foreach ($predefined as $tag) {
if (strpos($tag, 'Priority:') === 0) {
$predefined_priority = $tag;
$predefined_priority = explode('=', $tag, 2);
$predefined_priority = trim($predefined_priority[0]);
break;
}
}

Archive Download the corresponding diff file

Page rendered in 0.07364s using 13 queries.