@@ -, +, @@ --- installer/data/mysql/atomicupdate/bug_23971_AcqLog_pref.perl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- a/installer/data/mysql/atomicupdate/bug_23971_AcqLog_pref.perl +++ a/installer/data/mysql/atomicupdate/bug_23971_AcqLog_pref.perl @@ -2,6 +2,5 @@ $DBversion = 'XXX'; # will be replaced by the RM if( CheckVersion( $DBversion ) ) { $dbh->do( q| INSERT IGNORE INTO systempreferences (variable, value, explanation, options, type) VALUES ('AcqLog', '0', 'If enabled, log acquisition activity', '', 'YesNo'); | ); - SetVersion( $DBversion ); - print "Upgrade to $DBversion done (Bug 23971 - Add AcqLog syspref)\n"; + NewVersion( $DBversion, 23971, "Add AcqLog syspref"); } --