From: Paul Poulain Date: Fri, 9 Dec 2011 08:39:38 +0000 (+0100) Subject: updatedatabase: Adding missing \n at the end of 2 print X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=7e4e0d4300a6d15aa3b0d8625981f626344b79f0;p=koha.git updatedatabase: Adding missing \n at the end of 2 print They were missing on bug 6530 and 6328 --- diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index b5f96ef8fd..0063a75098 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -4567,14 +4567,14 @@ if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { $DBversion = "3.06.00.002"; if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { $dbh->do("UPDATE borrowers SET debarred=NULL WHERE debarred='0000-00-00';"); - print "Setting NULL to debarred where 0000-00-00 is stored (bug 7272)"; + print "Setting NULL to debarred where 0000-00-00 is stored (bug 7272)\n"; SetVersion($DBversion); } $DBversion = "3.06.02.001"; if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { $dbh->do(" UPDATE `message_attributes` SET message_name='Item_Due' WHERE message_name='Item_DUE'"); - print "Updating message_name in message_attributes"; + print "Updating message_name in message_attributes\n"; SetVersion($DBversion); }