View | Details | Raw Unified | Return to bug 18237
Collapse All | Expand All

(-)a/Koha.pm (-1 / +1 lines)
Lines 29-35 use vars qw{ $VERSION }; Link Here
29
# - #4 : the developer version. The 4th number is the database subversion.
29
# - #4 : the developer version. The 4th number is the database subversion.
30
#        used by developers when the database changes. updatedatabase take care of the changes itself
30
#        used by developers when the database changes. updatedatabase take care of the changes itself
31
#        and is automatically called by Auth.pm when needed.
31
#        and is automatically called by Auth.pm when needed.
32
$VERSION = "17.12.00.030";
32
$VERSION = "17.12.00.031";
33
33
34
sub version {
34
sub version {
35
    return $VERSION;
35
    return $VERSION;
(-)a/installer/data/mysql/atomicupdate/bug_11674-config_for_marc_field_doc_urls.sql (-3 lines)
Lines 1-3 Link Here
1
2
INSERT IGNORE INTO systempreferences (`variable`, `value`, `options`, `explanation`, `type`)
3
VALUES ('MarcFieldDocURL', NULL, NULL, 'URL used for MARC field documentation. Following substitutions are available: {MARC} = marc flavour, eg. \"MARC21\" or \"UNIMARC\". {FIELD} = field number, eg. \"000\" or \"048\". {LANG} = user language, eg. \"en\" or \"fi-FI\"', 'free');
(-)a/installer/data/mysql/updatedatabase.pl (-1 / +11 lines)
Lines 15829-15834 if( CheckVersion( $DBversion ) ) { Link Here
15829
    print "Upgrade to $DBversion done (Bug 19882 - Add system preference NovelistSelectStaffProfile)\n";
15829
    print "Upgrade to $DBversion done (Bug 19882 - Add system preference NovelistSelectStaffProfile)\n";
15830
}
15830
}
15831
15831
15832
$DBversion = '17.12.00.031';
15833
if( CheckVersion( $DBversion ) ) {
15834
    $dbh->do(q|
15835
        INSERT IGNORE INTO systempreferences (`variable`, `value`, `options`, `explanation`, `type`)
15836
        VALUES ('MarcFieldDocURL', NULL, NULL, 'URL used for MARC field documentation. Following substitutions are available: {MARC} = marc flavour, eg. \"MARC21\" or \"UNIMARC\". {FIELD} = field number, eg. \"000\" or \"048\". {LANG} = user language, eg. \"en\" or \"fi-FI\"', 'free')
15837
    |);
15838
15839
    SetVersion( $DBversion );
15840
    print "Upgrade to $DBversion done (Bug 11674 - Add system preference MarcFieldDocURL)\n";
15841
}
15842
15832
# SEE bug 13068
15843
# SEE bug 13068
15833
# if there is anything in the atomicupdate, read and execute it.
15844
# if there is anything in the atomicupdate, read and execute it.
15834
15845
15835
- 

Return to bug 18237