@@ -, +, @@ Use of uninitialized value in addition (+) at misc/maintenance/cmp_sysprefs.pl line 125. --- misc/maintenance/cmp_sysprefs.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/misc/maintenance/cmp_sysprefs.pl +++ a/misc/maintenance/cmp_sysprefs.pl @@ -217,7 +217,7 @@ sub InsertIgnoreOnePref { sub UpdateOnePref { my ( $k, $v ) = @_; - return if lc $k eq 'version'; + return 0 if lc $k eq 'version'; my $i = $dbh->do( 'UPDATE systempreferences SET value=? WHERE variable=?', undef, ( $v, $k ) ); return !defined($i) || $i eq '0E0'? 0: $i; } --