@@ -, +, @@ --- Koha.pm | 2 +- installer/data/mysql/updatedatabase.pl | 10 ++++++++++ koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt | 7 ------- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt | 11 ----------- mainpage.pl | 7 ------- opac/opac-user.pl | 4 ---- 6 files changed, 11 insertions(+), 30 deletions(-) --- a/Koha.pm +++ a/Koha.pm @@ -29,7 +29,7 @@ use vars qw{ $VERSION }; # - #4 : the developer version. The 4th number is the database subversion. # used by developers when the database changes. updatedatabase take care of the changes itself # and is automatically called by Auth.pm when needed. -$VERSION = "17.12.00.024"; +$VERSION = "17.12.00.025"; sub version { return $VERSION; --- a/installer/data/mysql/updatedatabase.pl +++ a/installer/data/mysql/updatedatabase.pl @@ -15706,6 +15706,16 @@ if( CheckVersion( $DBversion ) ) { SetVersion( $DBversion ); print "Upgrade to $DBversion done (Bug 15492: Add a standalone self-checkin module)\n"; } +$DBversion = '17.12.00.025'; +if( CheckVersion( $DBversion ) ) { + $dbh->do(q{ + DELETE FROM systempreferences + WHERE variable='checkdigit' + }); + + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 20264 - Remove system preference 'checkdigit')\n"; +} # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. --- a/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt @@ -34,13 +34,6 @@ [% END %]
- [% IF adminWarning %] -
-

Warning: You are logged in as the database administrative user. This is not recommended because some parts of Koha will not function as expected when using this account.

-

Please log in instead with a regular staff account. To create a staff account, create a library, a patron category 'Staff' and add a new patron. Then give this patron permissions from 'More' in the toolbar.

-

Create patron

-
- [% END %]