From: Lebbeous Fogle-Weekley Date: Tue, 26 Jul 2011 21:31:32 +0000 (-0400) Subject: Show most up-to-date email address in update-email interface X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=c7104b9147325b77d7966c4160a83a2eb74259c3;p=evergreen%2Fpines.git Show most up-to-date email address in update-email interface plus cosmetic change to payment mini table Signed-off-by: Lebbeous Fogle-Weekley --- diff --git a/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm b/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm index 00019588b4..c0d8e64cd8 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm @@ -1013,6 +1013,9 @@ sub load_myopac_update_email { my $ctx = $self->ctx; my $email = $self->cgi->param('email') || ''; + # needed for most up-to-date email address + if (my $r = $self->prepare_extended_user_info) { return $r }; + return Apache2::Const::OK unless $self->cgi->request_method eq 'POST'; diff --git a/Open-ILS/web/css/skin/default/opac/style.css b/Open-ILS/web/css/skin/default/opac/style.css index f3078fef0a..ae2098de0f 100644 --- a/Open-ILS/web/css/skin/default/opac/style.css +++ b/Open-ILS/web/css/skin/default/opac/style.css @@ -878,6 +878,7 @@ div.select-wrapper:hover { .myopac_payments_table th { text-align: left; } .myopac_payments_table thead th { border-bottom: 1px dashed #333; } +.myopac_payments_table thead th:first-child { width: 8em; } .myopac_payments_table tbody tr:nth-child(odd) { background-color: #ddd; } .myopac_payments_table form { display: inline; } .myopac_payments_table input[type="submit"] { padding: 1px; }