From: gerv%gerv.net <> Date: Wed, 3 Sep 2003 03:13:15 +0000 (+0000) Subject: Bug 215729 - "Column 'value' cannot be null" trying to upgrade chart data. Patch... X-Git-Tag: bugzilla-2.17.5~69 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b58af575949ab6ae74800873feef0e22ed763577;p=thirdparty%2Fbugzilla.git Bug 215729 - "Column 'value' cannot be null" trying to upgrade chart data. Patch by gerv; r,a=justdave. --- diff --git a/checksetup.pl b/checksetup.pl index bd3fda1fac..8b348211bf 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -3756,7 +3756,7 @@ if (!$series_exists) { # We prepared this above $seriesdatasth->execute($seriesids{$field}, $dbh->quote($date), - $fielddata{$date}); + $fielddata{$date} || 0); } } }