summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Bug.pm
diff options
context:
space:
mode:
authorjocuri%softhome.net <>2006-02-21 23:36:42 +0100
committerjocuri%softhome.net <>2006-02-21 23:36:42 +0100
commit60b9162729b1c13bb8bbe552f9b62b267035e2d4 (patch)
treecaa7c58f0d9177fbdb051372915f248b7420aa51 /Bugzilla/Bug.pm
parent67bd8daab845430bc67415c1762878c75cf6511c (diff)
downloadbugzilla-60b9162729b1c13bb8bbe552f9b62b267035e2d4.tar.gz
bugzilla-60b9162729b1c13bb8bbe552f9b62b267035e2d4.tar.xz
Patch for bug 287325: we should use scalar instead of length for finding out how many elements an array has; patch by me, r=justdave on IRC, fixing tree.
Diffstat (limited to 'Bugzilla/Bug.pm')
-rwxr-xr-xBugzilla/Bug.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm
index 22f62f186..290c4e7ca 100755
--- a/Bugzilla/Bug.pm
+++ b/Bugzilla/Bug.pm
@@ -128,7 +128,7 @@ sub initBug {
$self->{'who'} = new Bugzilla::User($user_id);
my $custom_fields = "";
- if (length(Bugzilla->custom_field_names) > 0) {
+ if (scalar(Bugzilla->custom_field_names) > 0) {
$custom_fields = ", " . join(", ", Bugzilla->custom_field_names);
}
@@ -742,7 +742,6 @@ sub AppendComment {
$dbh->do("UPDATE bugs SET delta_ts = ? WHERE bug_id = ?",
undef, $timestamp, $bugid);
}
-
# This method is private and is not to be used outside of the Bug class.
sub EmitDependList {
my ($myfield, $targetfield, $bug_id) = (@_);