From 75db3b4e17c3beb904594c74e0936bc44b83400a Mon Sep 17 00:00:00 2001 From: Viktor Sarge Date: Wed, 18 Feb 2015 21:02:09 +0000 Subject: [PATCH] Bug 13729 - Give news in Opac a unique anchor This patch introduces the use of the idnew-value from the opac_news table as a base for a unique anchor on each newsitem in Opac. The anchor can be used for linking to specific newsitems and also for improving bug 7843 (RSS stream for news) with a unique link to each item in the RSS stream. Test plan: * Make shure you have a few news in the opac. Best is if it's enough to hide a few beneath the bottom of the window. * Install the patch. * Verify that you can access newitems with links like mykoha/cgi-bin/koha/opac-main.pl#newsitem4 * Experiment with removing newsitems and verify that that the newsitem-id stay unique to each newsitem. Signed-off-by: Magnus Enger Works as advertised. Nice enhancement! Signed-off-by: Jonathan Druart Signed-off-by: Mason James --- .../opac-tmpl/bootstrap/en/modules/opac-main.tt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-main.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-main.tt index 5b68c196fd..9c1a78faae 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-main.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-main.tt @@ -38,14 +38,14 @@ [% END %] [% IF ( koha_news_count ) %] -
- - [% FOREACH koha_new IN koha_news %] - - - [% END %] -
[% koha_new.title %]

[% koha_new.new %]

-

(published on [% koha_new.newdate %])

+
+ [% FOREACH koha_new IN koha_news %] +
+

[% koha_new.title %]

+
[% koha_new.new %]
+
(published on [% koha_new.newdate %])
+
+ [% END %]
[% END %] -- 2.39.5