* Fixed case of copy-and-pastitis in DBrev descrieption * Inserted description for new syspref
NOTE: Please do not leave the system preference description blank in the updatedatabase entry - even for non-English users, an English description is more useful than a blank one. Signed-off-by: Galen Charlton <[email protected]> --- installer/data/mysql/updatedatabase.pl | 4 ++-- kohaversion.pl | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 9377592..b70a141 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -2523,9 +2523,9 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) { $DBversion = '3.01.00.044'; if (C4::Context->preference("Version") < TransformToNum($DBversion)) { - $dbh->do("INSERT INTO systempreferences (variable,value,explanation,options,type)VALUES( 'DisplayClearScreenButton', '0', '', 'If set to yes, a clear screen button will appear on the circulation page.', 'YesNo')"); + $dbh->do("INSERT INTO systempreferences (variable,value,explanation,options,type)VALUES( 'DisplayClearScreenButton', '0', 'If set to yes, a clear screen button will appear on the circulation page.', 'If set to yes, a clear screen button will appear on the circulation page.', 'YesNo')"); SetVersion ($DBversion); - print "Upgrade to $DBversion done (added FilterBeforeOverdueReport syspref and new index on authorised_values)\n"; + print "Upgrade to $DBversion done (added DisplayClearScreenButton system preference)\n"; } =item DropAllForeignKeys($table) diff --git a/kohaversion.pl b/kohaversion.pl index 9701165..f5151fe 100644 --- a/kohaversion.pl +++ b/kohaversion.pl @@ -10,7 +10,7 @@ use strict; sub kohaversion { - our $VERSION = '3.01.00.043'; + our $VERSION = '3.01.00.044'; # version needs to be set this way # so that it can be picked up by Makefile.PL # during install -- 1.6.3.3 _______________________________________________ Koha-patches mailing list [email protected] http://lists.koha.org/mailman/listinfo/koha-patches
