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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-main.tt (-1 lines)
Lines 50-56 Link Here
50
                [% END %]
50
                [% END %]
51
            </div>
51
            </div>
52
            <div id="rssnews-container">
52
            <div id="rssnews-container">
53
                [% SET branchcode = Branches.GetLoggedInBranchcode() %]
54
                <a href="[% OPACBaseURL %]/cgi-bin/koha/opac-news-rss.pl?branchcode=[% branchcode %]"><img src="[% interface %]/[% theme %]/images/feed-icon-16x16.png"></a>
53
                <a href="[% OPACBaseURL %]/cgi-bin/koha/opac-news-rss.pl?branchcode=[% branchcode %]"><img src="[% interface %]/[% theme %]/images/feed-icon-16x16.png"></a>
55
                RSS feed for [% IF ( loggedinusername ) %][% Branches.GetName( branchcode ) %] <i>and</i> [% END %] system-wide library news.
54
                RSS feed for [% IF ( loggedinusername ) %][% Branches.GetName( branchcode ) %] <i>and</i> [% END %] system-wide library news.
56
            </div>
55
            </div>
(-)a/opac/opac-main.pl (-1 / +1 lines)
Lines 59-64 my $quote = GetDailyQuote(); # other options are to pass in an exact quote id Link Here
59
$template->param(
59
$template->param(
60
    koha_news           => $all_koha_news,
60
    koha_news           => $all_koha_news,
61
    koha_news_count     => $koha_news_count,
61
    koha_news_count     => $koha_news_count,
62
    branchcode          => $homebranch,
62
    display_daily_quote => C4::Context->preference('QuoteOfTheDay'),
63
    display_daily_quote => C4::Context->preference('QuoteOfTheDay'),
63
    daily_quote         => $quote,
64
    daily_quote         => $quote,
64
);
65
);
65
- 

Return to bug 14305