From 929fbfdc848ef0c947646e1ffdd428431a81d17e Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 14 Feb 2014 15:09:06 -0500 Subject: [PATCH] Bug 11768 - Show patron cardnumber in opac personal details In previous versions of Koha, the patron cardnumber was displayed in the personal details section of the opac for logged in users. A patron needs to be able to access his or her cardnumber in some cases to access online resources a library makes available that requires his or her cardnumber. This is especially important for patron self registration where a patron may not have a physical library card. This field should be re-added to the patron personal details page. Test Plan: 1) Apply this patch 2) Log into the opac 3) Browse to "your personal details" 4) Verify the patron cardnumber is visible --- .../bootstrap/en/modules/opac-memberentry.tt | 5 +++++ .../opac-tmpl/prog/en/modules/opac-memberentry.tt | 5 +++++ 2 files changed, 10 insertions(+), 0 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt index efc210c..cbfd3f2 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt @@ -61,6 +61,11 @@ Library
    +
  1. + + +
  2. + [% UNLESS hidden.defined('branchcode') %]
  3. [% IF mandatory.defined('branchcode') %] diff --git a/koha-tmpl/opac-tmpl/prog/en/modules/opac-memberentry.tt b/koha-tmpl/opac-tmpl/prog/en/modules/opac-memberentry.tt index 6913860..22a355e 100644 --- a/koha-tmpl/opac-tmpl/prog/en/modules/opac-memberentry.tt +++ b/koha-tmpl/opac-tmpl/prog/en/modules/opac-memberentry.tt @@ -70,6 +70,11 @@ Library
      +
    1. + + +
    2. + [% UNLESS hidden.defined('branchcode') %]
    3. [% IF mandatory.defined('branchcode') %] -- 1.7.2.5