[Rt-commit] r14313 - in rt/branches/3.999-DANGEROUS: share/html/Elements/GnuPG
sunnavy at bestpractical.com
sunnavy at bestpractical.com
Fri Jul 18 23:13:26 EDT 2008
Author: sunnavy
Date: Fri Jul 18 23:13:26 2008
New Revision: 14313
Modified:
rt/branches/3.999-DANGEROUS/ (props changed)
rt/branches/3.999-DANGEROUS/share/html/Elements/GnuPG/KeyIssues
Log:
r14746 at sunnavys-mb: sunnavy | 2008-07-19 10:45:23 +0800
fixed keys of %{$issue}
Modified: rt/branches/3.999-DANGEROUS/share/html/Elements/GnuPG/KeyIssues
==============================================================================
--- rt/branches/3.999-DANGEROUS/share/html/Elements/GnuPG/KeyIssues (original)
+++ rt/branches/3.999-DANGEROUS/share/html/Elements/GnuPG/KeyIssues Fri Jul 18 23:13:26 2008
@@ -66,18 +66,18 @@
<ul>
% foreach my $issue ( @$Issues ) {
<li>
-% if ( $issue->{'User'} ) {
-User <a href="<% RT->config->get('WebPath') %>/Admin/Users/Modify.html?id=<% $issue->{'User'}->id %>"><&/Elements/ShowUser, User => $issue->{'User'} &></a> has a problem.
+% if ( $issue->{'user'} ) {
+User <a href="<% RT->config->get('WebPath') %>/Admin/Users/Modify.html?id=<% $issue->{'user'}->id %>"><&/Elements/ShowUser, User => $issue->{'user'} &></a> has a problem.
% } else {
-There is a problem with key(s) for address <% $issue->{'EmailAddress'} %>, but there is no user in the DB for this address.
+There is a problem with key(s) for address <% $issue->{'email'} %>, but there is no user in the DB for this address.
% }
-<% $issue->{'Message'} %>
+<% $issue->{'message'} %>
<br />
Select a key you want to use for encryption:
<& /Elements/GnuPG/SelectKeyForEncryption,
- Name => 'UseKey-'. $issue->{'EmailAddress'},
- EmailAddress => $issue->{'EmailAddress'},
- Default => ( $issue->{'User'}? $issue->{'User'}->preferred_key : undef ),
+ name => 'UseKey-'. $issue->{'email'},
+ email => $issue->{'email'},
+ default => ( $issue->{'user'}? $issue->{'user'}->preferred_key : undef ),
&>
</li>
% }
More information about the Rt-commit
mailing list