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

(-)a/installer/data/mysql/sysprefs.sql (-1 / +1 lines)
Lines 288-294 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
288
('OAI-PMH:MaxCount','50',NULL,'OAI-PMH maximum number of records by answer to ListRecords and ListIdentifiers queries','Integer'),
288
('OAI-PMH:MaxCount','50',NULL,'OAI-PMH maximum number of records by answer to ListRecords and ListIdentifiers queries','Integer'),
289
('OCLCAffiliateID','','','Use with FRBRizeEditions and XISBN. You can sign up for an AffiliateID here: http://www.worldcat.org/wcpa/do/AffiliateUserServices?method=initSelfRegister','free'),
289
('OCLCAffiliateID','','','Use with FRBRizeEditions and XISBN. You can sign up for an AffiliateID here: http://www.worldcat.org/wcpa/do/AffiliateUserServices?method=initSelfRegister','free'),
290
('OPACAcquisitionDetails','0','','Show the acquisition details at the OPAC','YesNo'),
290
('OPACAcquisitionDetails','0','','Show the acquisition details at the OPAC','YesNo'),
291
('OpacNewsLibrarySelect','0','','Show selector for branches on OPAC news page','YesNo'),
292
('OpacAddMastheadLibraryPulldown','0','','Adds a pulldown menu to select the library to search on the opac masthead.','YesNo'),
291
('OpacAddMastheadLibraryPulldown','0','','Adds a pulldown menu to select the library to search on the opac masthead.','YesNo'),
293
('OpacAdvSearchMoreOptions','pubdate,itemtype,language,subtype,sorting,location','Show search options for the expanded view (More options)','pubdate|itemtype|language|subtype|sorting|location','multiple'),
292
('OpacAdvSearchMoreOptions','pubdate,itemtype,language,subtype,sorting,location','Show search options for the expanded view (More options)','pubdate|itemtype|language|subtype|sorting|location','multiple'),
294
('OpacAdvSearchOptions','pubdate,itemtype,language,sorting,location','Show search options','pubdate|itemtype|language|subtype|sorting|location','multiple'),
293
('OpacAdvSearchOptions','pubdate,itemtype,language,sorting,location','Show search options','pubdate|itemtype|language|subtype|sorting|location','multiple'),
Lines 343-348 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
343
('OpacNav','Important links here.','70|10','Use HTML tags to add navigational links to the left-hand navigational bar in OPAC','Textarea'),
342
('OpacNav','Important links here.','70|10','Use HTML tags to add navigational links to the left-hand navigational bar in OPAC','Textarea'),
344
('OpacNavBottom','Important links here.','70|10','Use HTML tags to add navigational links to the left-hand navigational bar in OPAC','Textarea'),
343
('OpacNavBottom','Important links here.','70|10','Use HTML tags to add navigational links to the left-hand navigational bar in OPAC','Textarea'),
345
('OpacNavRight','','70|10','Show the following HTML in the right hand column of the main page under the main login form','Textarea'),
344
('OpacNavRight','','70|10','Show the following HTML in the right hand column of the main page under the main login form','Textarea'),
345
('OpacNewsLibrarySelect','0','','Show selector for branches on OPAC news page','YesNo'),
346
('OPACNoResultsFound','','70|10','Display this HTML when no results are found for a search in the OPAC','Textarea'),
346
('OPACNoResultsFound','','70|10','Display this HTML when no results are found for a search in the OPAC','Textarea'),
347
('OPACNumbersPreferPhrase','0',NULL,'Control the use of phr operator in callnumber and standard number OPAC searches','YesNo'),
347
('OPACNumbersPreferPhrase','0',NULL,'Control the use of phr operator in callnumber and standard number OPAC searches','YesNo'),
348
('OPACnumSearchResults','20',NULL,'Specify the maximum number of results to display on a page of results','Integer'),
348
('OPACnumSearchResults','20',NULL,'Specify the maximum number of results to display on a page of results','Integer'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref (-1 lines)
Lines 509-515 OPAC: Link Here
509
                  yes: Display
509
                  yes: Display
510
                  no: Don't display
510
                  no: Don't display
511
            - a branch selection list for news items in the OPAC.
511
            - a branch selection list for news items in the OPAC.
512
    Policy:
513
        -
512
        -
514
            - "Use the following as the OPAC ISBD template:"
513
            - "Use the following as the OPAC ISBD template:"
515
            - pref: OPACISBD
514
            - pref: OPACISBD
(-)a/opac/opac-main.pl (-2 / +1 lines)
Lines 54-60 if (C4::Context->userenv) { Link Here
54
if (defined $input->param('branch') and length $input->param('branch')) {
54
if (defined $input->param('branch') and length $input->param('branch')) {
55
    $homebranch = $input->param('branch');
55
    $homebranch = $input->param('branch');
56
}
56
}
57
if (C4::Context->userenv and defined $input->param('branch') and length $input->param('branch') == 0 ){
57
elsif (C4::Context->userenv and defined $input->param('branch') and length $input->param('branch') == 0 ){
58
   $homebranch = "";
58
   $homebranch = "";
59
}
59
}
60
my $all_koha_news   = &GetNewsToDisplay($news_lang,$homebranch);
60
my $all_koha_news   = &GetNewsToDisplay($news_lang,$homebranch);
61
- 

Return to bug 14764