Lines 17-23
Link Here
|
17 |
# GNU General Public License for more details. |
17 |
# GNU General Public License for more details. |
18 |
# |
18 |
# |
19 |
# You should have received a copy of the GNU General Public License |
19 |
# You should have received a copy of the GNU General Public License |
20 |
# along with Koha; if not, see <http://www.gnu.org/licenses>. |
20 |
# along with Koha; if not, see <https://www.gnu.org/licenses>. |
21 |
# |
21 |
# |
22 |
|
22 |
|
23 |
# Bugs/ToDo: |
23 |
# Bugs/ToDo: |
Lines 5747-5753
if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
Link Here
|
5747 |
"INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES('CatalogModuleRelink',0,'If OFF the linker will never replace the authids that are set in the cataloging module.',NULL,'YesNo');" |
5747 |
"INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES('CatalogModuleRelink',0,'If OFF the linker will never replace the authids that are set in the cataloging module.',NULL,'YesNo');" |
5748 |
); |
5748 |
); |
5749 |
print |
5749 |
print |
5750 |
"Upgrade to $DBversion done (Enhancement 7284, improved authority matching, see http://wiki.koha-community.org/wiki/Bug7284_authority_matching_improvement wiki page for configuration update needed)\n"; |
5750 |
"Upgrade to $DBversion done (Enhancement 7284, improved authority matching, see https://wiki.koha-community.org/wiki/Bug7284_authority_matching_improvement wiki page for configuration update needed)\n"; |
5751 |
SetVersion($DBversion); |
5751 |
SetVersion($DBversion); |
5752 |
} |
5752 |
} |
5753 |
|
5753 |
|
Lines 6906-6912
if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
Link Here
|
6906 |
|
6906 |
|
6907 |
# preferences changes |
6907 |
# preferences changes |
6908 |
$dbh->do( |
6908 |
$dbh->do( |
6909 |
"INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES('AgeRestrictionMarker','','Markers for age restriction indication, e.g. FSK|PEGI|Age|. See: http://wiki.koha-community.org/wiki/Age_restriction',NULL,'free')" |
6909 |
"INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES('AgeRestrictionMarker','','Markers for age restriction indication, e.g. FSK|PEGI|Age|. See: https://wiki.koha-community.org/wiki/Age_restriction',NULL,'free')" |
6910 |
); |
6910 |
); |
6911 |
$dbh->do( |
6911 |
$dbh->do( |
6912 |
"INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES('AgeRestrictionOverride',0,'Allow staff to check out an item with age restriction.',NULL,'YesNo')" |
6912 |
"INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES('AgeRestrictionOverride',0,'Allow staff to check out an item with age restriction.',NULL,'YesNo')" |
Lines 22392-22398
if ( CheckVersion($DBversion) ) {
Link Here
|
22392 |
$DBversion = '18.12.00.056'; |
22392 |
$DBversion = '18.12.00.056'; |
22393 |
if ( CheckVersion($DBversion) ) { |
22393 |
if ( CheckVersion($DBversion) ) { |
22394 |
$dbh->do( |
22394 |
$dbh->do( |
22395 |
"UPDATE systempreferences SET explanation = 'This syspref allows to define custom rules for hiding specific items at the OPAC. See http://wiki.koha-community.org/wiki/OpacHiddenItems for more information.' WHERE variable = 'OpacHiddenItems'" |
22395 |
"UPDATE systempreferences SET explanation = 'This syspref allows to define custom rules for hiding specific items at the OPAC. See https://wiki.koha-community.org/wiki/OpacHiddenItems for more information.' WHERE variable = 'OpacHiddenItems'" |
22396 |
); |
22396 |
); |
22397 |
SetVersion($DBversion); |
22397 |
SetVersion($DBversion); |
22398 |
print "Upgrade to $DBversion done (Bug 8701 - Update OpacHiddenItems system preference description)\n"; |
22398 |
print "Upgrade to $DBversion done (Bug 8701 - Update OpacHiddenItems system preference description)\n"; |