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

(-)a/C4/Auth.pm (-1 lines)
Lines 435-441 sub get_template_and_user { Link Here
435
            OpacKohaUrl               => C4::Context->preference("OpacKohaUrl"),
435
            OpacKohaUrl               => C4::Context->preference("OpacKohaUrl"),
436
            OpacMainUserBlock         => "" . C4::Context->preference("OpacMainUserBlock"),
436
            OpacMainUserBlock         => "" . C4::Context->preference("OpacMainUserBlock"),
437
            OpacMainUserBlockMobile   => "" . C4::Context->preference("OpacMainUserBlockMobile"),
437
            OpacMainUserBlockMobile   => "" . C4::Context->preference("OpacMainUserBlockMobile"),
438
            OpacShowFiltersPulldownMobile => C4::Context->preference("OpacShowFiltersPulldownMobile"),
439
            OpacShowLibrariesPulldownMobile => C4::Context->preference("OpacShowLibrariesPulldownMobile"),
438
            OpacShowLibrariesPulldownMobile => C4::Context->preference("OpacShowLibrariesPulldownMobile"),
440
            OpacNav                   => "" . C4::Context->preference("OpacNav"),
439
            OpacNav                   => "" . C4::Context->preference("OpacNav"),
441
            OpacNavRight              => "" . C4::Context->preference("OpacNavRight"),
440
            OpacNavRight              => "" . C4::Context->preference("OpacNavRight"),
(-)a/installer/data/mysql/sysprefs.sql (-1 lines)
Lines 279-285 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
279
('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'),
279
('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'),
280
('OPACShowBarcode','0','','Show items barcode in holding tab','YesNo'),
280
('OPACShowBarcode','0','','Show items barcode in holding tab','YesNo'),
281
('OPACShowCheckoutName','0','','Displays in the OPAC the name of patron who has checked out the material. WARNING: Most sites should leave this off. It is intended for corporate or special sites which need to track who has the item.','YesNo'),
281
('OPACShowCheckoutName','0','','Displays in the OPAC the name of patron who has checked out the material. WARNING: Most sites should leave this off. It is intended for corporate or special sites which need to track who has the item.','YesNo'),
282
('OpacShowFiltersPulldownMobile','1',NULL,'Show the search filters pulldown on the mobile version of the OPAC.','YesNo'),
283
('OPACShowHoldQueueDetails','none','none|priority|holds|holds_priority','Show holds details in OPAC','Choice'),
282
('OPACShowHoldQueueDetails','none','none|priority|holds|holds_priority','Show holds details in OPAC','Choice'),
284
('OpacShowLibrariesPulldownMobile','1',NULL,'Show the libraries pulldown on the mobile version of the OPAC.','YesNo'),
283
('OpacShowLibrariesPulldownMobile','1',NULL,'Show the libraries pulldown on the mobile version of the OPAC.','YesNo'),
285
('OpacShowRecentComments','0',NULL,'If ON a link to recent comments will appear in the OPAC masthead','YesNo'),
284
('OpacShowRecentComments','0',NULL,'If ON a link to recent comments will appear in the OPAC masthead','YesNo'),
(-)a/installer/data/mysql/updatedatabase.pl (+7 lines)
Lines 8560-8565 if ( CheckVersion($DBversion) ) { Link Here
8560
    SetVersion($DBversion);
8560
    SetVersion($DBversion);
8561
}
8561
}
8562
8562
8563
$DBversion = "3.17.00.XXX";
8564
if ( CheckVersion($DBversion) ) {
8565
    $dbh->do("DELETE FROM systempreferences WHERE variable='OpacShowFiltersPulldownMobile'");
8566
    print "Upgrade to $DBversion done ( Bug 12512 - PROG/CCSR deprecation: Remove OpacShowFiltersPulldownMobile system preference )\n";
8567
    SetVersion ($DBversion);
8568
}
8569
8563
=head1 FUNCTIONS
8570
=head1 FUNCTIONS
8564
8571
8565
=head2 TableExists($table)
8572
=head2 TableExists($table)
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref (-7 lines)
Lines 210-221 OPAC: Link Here
210
                  no: "Don't show"
210
                  no: "Don't show"
211
            - the libraries pulldown on the mobile version of the OPAC.
211
            - the libraries pulldown on the mobile version of the OPAC.
212
        -
212
        -
213
            - pref: OpacShowFiltersPulldownMobile
214
              choices:
215
                  yes: Show
216
                  no: "Don't show"
217
            - the search filters pulldown on the mobile version of the OPAC.
218
        -
219
            - "Show the following HTML on the left hand column of the main page and patron account on the OPAC (generally navigation links):"
213
            - "Show the following HTML on the left hand column of the main page and patron account on the OPAC (generally navigation links):"
220
            - pref: OpacNav
214
            - pref: OpacNav
221
              type: textarea
215
              type: textarea
222
- 

Return to bug 12512