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

Return to bug 14305