|
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 |
- |
|
|