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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt (+1 lines)
Lines 15-20 Link Here
15
[% SET borrower_enrollable_clubs = logged_in_user.get_enrollable_clubs(1) %] <!-- 1 => OPAC -->
15
[% SET borrower_enrollable_clubs = logged_in_user.get_enrollable_clubs(1) %] <!-- 1 => OPAC -->
16
[% SET OverDriveEnabled = ( Koha.Preference( "OPACOverDrive" ) && Koha.Preference('OverDriveLibraryID') && Koha.Preference('OverDriveClientKey') && Koha.Preference('OverDriveClientSecret') ) %]
16
[% SET OverDriveEnabled = ( Koha.Preference( "OPACOverDrive" ) && Koha.Preference('OverDriveLibraryID') && Koha.Preference('OverDriveClientKey') && Koha.Preference('OverDriveClientSecret') ) %]
17
[% SET OverDriveCirculation = ( OverDriveEnabled && Koha.Preference( "OverDriveCirculation" ) ) %]
17
[% SET OverDriveCirculation = ( OverDriveEnabled && Koha.Preference( "OverDriveCirculation" ) ) %]
18
[% SET SuspendHoldsOpac = Koha.Preference( "SuspendHoldsOpac" ) %]
18
19
19
[% INCLUDE 'doc-head-open.inc' %]
20
[% INCLUDE 'doc-head-open.inc' %]
20
<title>Your library home &rsaquo; [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog</title>
21
<title>Your library home &rsaquo; [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog</title>
(-)a/opac/opac-user.pl (-2 lines)
Lines 412-418 $template->param( Link Here
412
    OpacRenewalAllowed         => C4::Context->preference("OpacRenewalAllowed"),
412
    OpacRenewalAllowed         => C4::Context->preference("OpacRenewalAllowed"),
413
    userview                   => 1,
413
    userview                   => 1,
414
    tab                        => $query->param('tab'),
414
    tab                        => $query->param('tab'),
415
    SuspendHoldsOpac           => C4::Context->preference('SuspendHoldsOpac'),
416
    AutoResumeSuspendedHolds   => C4::Context->preference('AutoResumeSuspendedHolds'),
415
    AutoResumeSuspendedHolds   => C4::Context->preference('AutoResumeSuspendedHolds'),
417
    OpacHoldNotes              => C4::Context->preference('OpacHoldNotes'),
416
    OpacHoldNotes              => C4::Context->preference('OpacHoldNotes'),
418
    failed_holds               => scalar $query->param('failed_holds'),
417
    failed_holds               => scalar $query->param('failed_holds'),
419
- 

Return to bug 39003