summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Bug.pm
diff options
context:
space:
mode:
authorMax Kanat-Alexander <mkanat@bugzilla.org>2010-02-17 22:59:03 +0100
committerMax Kanat-Alexander <mkanat@bugzilla.org>2010-02-17 22:59:03 +0100
commited751860d5613bc1c8617377fd28be4ede04dd78 (patch)
treee79c54722495205cb908d31cfdb764a622a840d9 /Bugzilla/Bug.pm
parent738591be1e58b664146eb12b61fa4294d56b534e (diff)
downloadbugzilla-ed751860d5613bc1c8617377fd28be4ede04dd78.tar.gz
bugzilla-ed751860d5613bc1c8617377fd28be4ede04dd78.tar.xz
Bug 329637: Add a Calendar widget to the Deadline field
r=ghendricks, a=mkanat
Diffstat (limited to 'Bugzilla/Bug.pm')
-rw-r--r--Bugzilla/Bug.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm
index b3f0fe58e..ad272af22 100644
--- a/Bugzilla/Bug.pm
+++ b/Bugzilla/Bug.pm
@@ -218,8 +218,7 @@ use constant NUMERIC_COLUMNS => qw(
);
sub DATE_COLUMNS {
- my @fields = Bugzilla->get_fields(
- { custom => 1, type => FIELD_TYPE_DATETIME });
+ my @fields = Bugzilla->get_fields({ type => FIELD_TYPE_DATETIME });
return map { $_->name } @fields;
}