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

(-)a/installer/data/mysql/sysprefs.sql (+1 lines)
Lines 252-257 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
252
('OPACdefaultSortOrder','dsc','asc|dsc|za|az','Specify the default sort order','Choice'),
252
('OPACdefaultSortOrder','dsc','asc|dsc|za|az','Specify the default sort order','Choice'),
253
('OPACdidyoumean',NULL,NULL,'Did you mean? configuration for the OPAC. Do not change, as this is controlled by /cgi-bin/koha/admin/didyoumean.pl.','Free'),
253
('OPACdidyoumean',NULL,NULL,'Did you mean? configuration for the OPAC. Do not change, as this is controlled by /cgi-bin/koha/admin/didyoumean.pl.','Free'),
254
('OPACDisplay856uAsImage','OFF','OFF|Details|Results|Both','Display the URI in the 856u field as an image, the corresponding OPACXSLT option must be on','Choice'),
254
('OPACDisplay856uAsImage','OFF','OFF|Details|Results|Both','Display the URI in the 856u field as an image, the corresponding OPACXSLT option must be on','Choice'),
255
('OPACEnhancedMessagingPreferences', '1', NULL, 'If ON, show patrons messaging setting on the OPAC.', 'YesNo'),
255
('OpacExportOptions','bibtex,dc,marcxml,marc8,utf8,marcstd,mods,ris','','Define export options available on OPAC detail page.','multiple'),
256
('OpacExportOptions','bibtex,dc,marcxml,marc8,utf8,marcstd,mods,ris','','Define export options available on OPAC detail page.','multiple'),
256
('OPACFallback', 'prog', 'bootstrap|prog', 'Define the fallback theme for the OPAC interface.', 'Themes'),
257
('OPACFallback', 'prog', 'bootstrap|prog', 'Define the fallback theme for the OPAC interface.', 'Themes'),
257
('OpacFavicon','','','Enter a complete URL to an image to replace the default Koha favicon on the OPAC','free'),
258
('OpacFavicon','','','Enter a complete URL to an image to replace the default Koha favicon on the OPAC','free'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/patrons.pref (+7 lines)
Lines 139-144 Patrons: Link Here
139
         - pref: CardnumberLength
139
         - pref: CardnumberLength
140
         - "characters long. The length can be a single number to specify an exact length, a range separated by a comma (i.e., 'Min,Max'), or a maximum with no minimum (i.e., ',Max')."
140
         - "characters long. The length can be a single number to specify an exact length, a range separated by a comma (i.e., 'Min,Max'), or a maximum with no minimum (i.e., ',Max')."
141
         - "If 'cardnumber' is included in the BorrowerMandatoryField list, the minimum length, if not specified here, defaults to one."
141
         - "If 'cardnumber' is included in the BorrowerMandatoryField list, the minimum length, if not specified here, defaults to one."
142
     -
143
         - pref: OPACEnhancedMessagingPreferences
144
           choices:
145
               yes: Show
146
               no: "Don't show"
147
         - "patron messaging setting on the OPAC (NOTE: EnhancedMessagingPreferences must be enabled)."
148
142
    "Norwegian patron database":
149
    "Norwegian patron database":
143
     -
150
     -
144
         - pref: NorwegianPatronDBEnable
151
         - pref: NorwegianPatronDBEnable
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/usermenu.inc (-7 / +8 lines)
Lines 79-90 Link Here
79
            [% END %]
79
            [% END %]
80
80
81
            [% IF ( EnhancedMessagingPreferences ) %]
81
            [% IF ( EnhancedMessagingPreferences ) %]
82
                [% IF ( messagingview ) %]
82
                [% IF Koha.Preference( 'OPACEnhancedMessagingPreferences' ) %]
83
                    <li class="active">
83
                    [% IF ( messagingview ) %]
84
                [% ELSE %]
84
                        <li class="active">
85
                    <li>
85
                    [% ELSE %]
86
                [% END %]
86
                        <li>
87
                <a href="/cgi-bin/koha/opac-messaging.pl">your messaging</a></li>
87
                    [% END %]
88
                    <a href="/cgi-bin/koha/opac-messaging.pl">your messaging</a></li>
89
                 [% END %]
88
            [% END %]
90
            [% END %]
89
91
90
            [% IF Koha.Preference( 'virtualshelves' ) == 1 %]
92
            [% IF Koha.Preference( 'virtualshelves' ) == 1 %]
91
- 

Return to bug 12528