diff options
author | lpsolit%gmail.com <> | 2006-04-13 07:46:33 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-04-13 07:46:33 +0200 |
commit | e416c1d9b9155efbcbdbe6dc8180e8f6b961b1e0 (patch) | |
tree | d16328924f1ca3243caa3b870a0761a5efd73e66 /summarize_time.cgi | |
parent | 82982fbd12c68697d89d091385195f3622a144d0 (diff) | |
download | bugzilla-e416c1d9b9155efbcbdbe6dc8180e8f6b961b1e0.tar.gz bugzilla-e416c1d9b9155efbcbdbe6dc8180e8f6b961b1e0.tar.xz |
Bug 308668: summarize_time.cgi: Use of uninitialized value in concatenation (.) or string - Patch by Frédéric Buclin <LpSolit@gmail.com> r=wicked a=justdave
Diffstat (limited to 'summarize_time.cgi')
-rwxr-xr-x | summarize_time.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/summarize_time.cgi b/summarize_time.cgi index df6ae913c..527c02c9b 100755 --- a/summarize_time.cgi +++ b/summarize_time.cgi @@ -207,7 +207,7 @@ sub include_tt_details { sub sqlize_dates { my ($start_date, $end_date) = @_; - my $date_bits; + my $date_bits = ""; my @date_values; if ($start_date) { # we've checked, trick_taint is fine |