Commit e416c1d9 authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 308668: summarize_time.cgi: Use of uninitialized value in concatenation (.)…

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
parent 82982fbd
...@@ -207,7 +207,7 @@ sub include_tt_details { ...@@ -207,7 +207,7 @@ sub include_tt_details {
sub sqlize_dates { sub sqlize_dates {
my ($start_date, $end_date) = @_; my ($start_date, $end_date) = @_;
my $date_bits; my $date_bits = "";
my @date_values; my @date_values;
if ($start_date) { if ($start_date) {
# we've checked, trick_taint is fine # we've checked, trick_taint is fine
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment