
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Evergreen ILS". The branch, rel_3_15 has been updated via b1984fd37517636cd9f9064e963e5fdc5b51d37d (commit) from 5fce7551c00b50cd03dcb6a90d27c06793289ed8 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit b1984fd37517636cd9f9064e963e5fdc5b51d37d Author: Stephanie Leary <stephanie.leary@equinoxoli.org> Date: Tue Mar 18 16:38:27 2025 +0000 LP2078713 Label for OPAC privacy waiver name field Adds a label tag for the Name field under "Allow others to use my account" in the OPAC search and history preferences. Release-note: Adds label to "Allow others to use my account" name input Signed-off-by: Stephanie Leary <stephanie.leary@equinoxoli.org> Signed-off-by: Jane Sandberg <js7389@princeton.edu> Signed-off-by: Elizabeth Davis <elizabeth.davis@sparkpa.org> Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org> Signed-off-by: Ruth Frasur Davis <redavis4974@gmail.com> Signed-off-by: Dan Guarracino <dguarracino@owwl.org> diff --git a/Open-ILS/src/templates-bootstrap/opac/myopac/prefs_settings.tt2 b/Open-ILS/src/templates-bootstrap/opac/myopac/prefs_settings.tt2 index a0909bd514..eb40cacd63 100755 --- a/Open-ILS/src/templates-bootstrap/opac/myopac/prefs_settings.tt2 +++ b/Open-ILS/src/templates-bootstrap/opac/myopac/prefs_settings.tt2 @@ -153,8 +153,8 @@ </div> [% END %] <div> - <label class="form-label">[% l('Name:') %]</label> - <input type="textbox" class="form-control" name="waiver_name_new"/> + <label class="form-label" for="waiver_name_new">[% l('Name:') %]</label> + <input type="textbox" class="form-control" name="waiver_name_new" id="waiver_name_new"/> <div class="form-check w-100"> <input for="waiver_place_holds" type="checkbox" class="form-check-input" name="waiver_place_holds" id="waiver_place_holds" value="new"/> diff --git a/Open-ILS/src/templates/opac/myopac/prefs_settings.tt2 b/Open-ILS/src/templates/opac/myopac/prefs_settings.tt2 index 146fae7ba0..52364bc1a5 100644 --- a/Open-ILS/src/templates/opac/myopac/prefs_settings.tt2 +++ b/Open-ILS/src/templates/opac/myopac/prefs_settings.tt2 @@ -152,7 +152,7 @@ [% END %] <br/> <div> - [% l('Name:') %] <input type="textbox" name="waiver_name_new"/><br/> + <label for="waiver_name_new">[% l('Name:') %]</label> <input type="textbox" name="waiver_name_new" id="waiver_name_new"/><br/> <label><input type="checkbox" name="waiver_place_holds" value="new"/>[% l('Place Holds') %]</label> <label><input type="checkbox" name="waiver_pickup_holds" value="new"/>[% l('Pick Up Holds') %]</label> <label><input type="checkbox" name="waiver_checkout_items" value="new"/>[% l('Check Out Items') %]</label> ----------------------------------------------------------------------- Summary of changes: Open-ILS/src/templates-bootstrap/opac/myopac/prefs_settings.tt2 | 4 ++-- Open-ILS/src/templates/opac/myopac/prefs_settings.tt2 | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) hooks/post-receive -- Evergreen ILS