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

(-)a/installer/data/mysql/mandatory/sysprefs.sql (-1 / +1 lines)
Lines 532-538 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
532
('OPACSearchForTitleIn','<a href=\"https://worldcat.org/search?q={TITLE}\" target=\"_blank\">Other Libraries (WorldCat)</a>\n<a href=\"https://scholar.google.com/scholar?q={TITLE}\" target=\"_blank\">Other Databases (Google Scholar)</a>\n<a href=\"https://www.bookfinder.com/search/?author={AUTHOR}&amp;title={TITLE}&amp;st=xl&amp;ac=qr\" target=\"_blank\">Online Stores (Bookfinder.com)</a>\n<a href=\"https://openlibrary.org/search?author=({AUTHOR})&title=({TITLE})\" target=\"_blank\">Open Library (openlibrary.org)</a>','70|10','Enter the HTML that will appear in the \'Search for this title in\' box on the detail page in the OPAC.  Enter {TITLE}, {AUTHOR}, or {ISBN} in place of their respective variables in the URL. Leave blank to disable \'More Searches\' menu.','Textarea'),
532
('OPACSearchForTitleIn','<a href=\"https://worldcat.org/search?q={TITLE}\" target=\"_blank\">Other Libraries (WorldCat)</a>\n<a href=\"https://scholar.google.com/scholar?q={TITLE}\" target=\"_blank\">Other Databases (Google Scholar)</a>\n<a href=\"https://www.bookfinder.com/search/?author={AUTHOR}&amp;title={TITLE}&amp;st=xl&amp;ac=qr\" target=\"_blank\">Online Stores (Bookfinder.com)</a>\n<a href=\"https://openlibrary.org/search?author=({AUTHOR})&title=({TITLE})\" target=\"_blank\">Open Library (openlibrary.org)</a>','70|10','Enter the HTML that will appear in the \'Search for this title in\' box on the detail page in the OPAC.  Enter {TITLE}, {AUTHOR}, or {ISBN} in place of their respective variables in the URL. Leave blank to disable \'More Searches\' menu.','Textarea'),
533
('OpacSeparateHoldings','0',NULL,'Separate current branch holdings from other holdings (OPAC)','YesNo'),
533
('OpacSeparateHoldings','0',NULL,'Separate current branch holdings from other holdings (OPAC)','YesNo'),
534
('OpacSeparateHoldingsBranch','homebranch','homebranch|holdingbranch','Branch used to separate holdings (OPAC)','Choice'),
534
('OpacSeparateHoldingsBranch','homebranch','homebranch|holdingbranch','Branch used to separate holdings (OPAC)','Choice'),
535
('opacSerialDefaultTab','subscriptions','holdings|serialcollection|subscriptions','Define the default tab for serials in OPAC.','Choice'),
535
('opacSerialDefaultTab','subscriptions','holdings|serialcollection|subscriptions|titlenotes','Define the default tab for serials in OPAC.','Choice'),
536
('OPACSerialIssueDisplayCount','3','','Number of serial issues to display per subscription in the OPAC','Integer'),
536
('OPACSerialIssueDisplayCount','3','','Number of serial issues to display per subscription in the OPAC','Integer'),
537
('OPACShelfBrowser','1','','Enable/disable Shelf Browser on item details page. WARNING: this feature is very resource consuming on collections with large numbers of items.','YesNo'),
537
('OPACShelfBrowser','1','','Enable/disable Shelf Browser on item details page. WARNING: this feature is very resource consuming on collections with large numbers of items.','YesNo'),
538
('OPACShibOnly','0','','If ON enables shibboleth only authentication for the opac','YesNo'),
538
('OPACShibOnly','0','','If ON enables shibboleth only authentication for the opac','YesNo'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/serials.pref (+1 lines)
Lines 5-10 Serials: Link Here
5
        - pref: opacSerialDefaultTab
5
        - pref: opacSerialDefaultTab
6
          choices:
6
          choices:
7
              holdings: holdings tab
7
              holdings: holdings tab
8
              titlenotes: title notes tab
8
              subscriptions: subscriptions tab
9
              subscriptions: subscriptions tab
9
              serialcollection: serial collection tab
10
              serialcollection: serial collection tab
10
        - as default tab for serials in OPAC. Please note that the serial collection tab is currently available only for UNIMARC.
11
        - as default tab for serials in OPAC. Please note that the serial collection tab is currently available only for UNIMARC.
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt (+2 lines)
Lines 1694-1699 Link Here
1694
                showBsTab("bibliodescriptions", "holdings");
1694
                showBsTab("bibliodescriptions", "holdings");
1695
            [%   CASE 'components' -%]
1695
            [%   CASE 'components' -%]
1696
                showBsTab("bibliodescriptions", "components");
1696
                showBsTab("bibliodescriptions", "components");
1697
            [%   CASE 'descriptions' -%]
1698
                showBsTab("bibliodescriptions", "descriptions");
1697
            [%   CASE 'subscriptions' -%]
1699
            [%   CASE 'subscriptions' -%]
1698
                showBsTab("bibliodescriptions", "subscriptions");
1700
                showBsTab("bibliodescriptions", "subscriptions");
1699
            [%   CASE 'serialcollection' -%]
1701
            [%   CASE 'serialcollection' -%]
(-)a/opac/opac-detail.pl (-1 / +2 lines)
Lines 1202-1207 my $defaulttab = Link Here
1202
        ? 'holdings' :
1202
        ? 'holdings' :
1203
    $opac_serial_default eq 'subscriptions' && $subscriptionsnumber
1203
    $opac_serial_default eq 'subscriptions' && $subscriptionsnumber
1204
        ? 'subscriptions' :
1204
        ? 'subscriptions' :
1205
    $opac_serial_default eq 'titlenotes' && $subscriptionsnumber
1206
        ? 'descriptions' :
1205
    $opac_serial_default eq 'serialcollection' && @serialcollections > 0
1207
    $opac_serial_default eq 'serialcollection' && @serialcollections > 0
1206
        ? 'serialcollection' :
1208
        ? 'serialcollection' :
1207
    $opac_serial_default eq 'holdings' && scalar (@itemloop) > 0
1209
    $opac_serial_default eq 'holdings' && scalar (@itemloop) > 0
1208
- 

Return to bug 19768