From 00a8e882dcbef1a5e22b4256d379990795661804 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Mon, 20 May 2013 14:50:46 -0400 Subject: [PATCH] Bug 10293 - Bug 9930 needs to be reverted for 3.10.x The patch for bug 9930 needs to be reverted for 3.10.x, as the patron self registration feature is not part of 3.10.x. With the patch applied, the OPAC patron details link may redirect to a non-existent page ( opac-memberentry.pl ). Test Plan: 1) Set OPAC to use CCSR theme. 2) Log into the OPAC. 3) Click the link for your username. 4) Click the "my personal details" tab. 5) Note the error page you get 6) Apply this patch 7) Refresh the page 8) You should now see the user details update page This reverts commit e5186d6d784c1fdd8d12c6e93e163d0b9e10cc0e. Signed-off-by: Jonathan Druart --- koha-tmpl/opac-tmpl/ccsr/en/includes/usermenu.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/ccsr/en/includes/usermenu.inc b/koha-tmpl/opac-tmpl/ccsr/en/includes/usermenu.inc index fcbbcba..99e8743 100644 --- a/koha-tmpl/opac-tmpl/ccsr/en/includes/usermenu.inc +++ b/koha-tmpl/opac-tmpl/ccsr/en/includes/usermenu.inc @@ -5,7 +5,7 @@ [% IF ( OPACFinesTab ) %] [% IF ( accountview ) %]
  • [% ELSE %]
  • [% END %]my fines
  • [% END %] - [% IF ( userupdateview ) %]
  • [% ELSE %]
  • [% END %]my personal details
  • + [% IF ( userupdateview ) %]
  • [% ELSE %]
  • [% END %]my personal details
  • [% IF ( TagsEnabled ) %] [% IF ( tagsview ) %]
  • [% ELSE %]
  • [% END %]my tags
  • [% END %] -- 1.7.10.4