[Rt-commit] rt branch, 3.9-trunk, updated. rt-3.8.8-440-gef4d76e
Thomas Sibley
trs at bestpractical.com
Tue Aug 17 17:32:32 EDT 2010
The branch, 3.9-trunk has been updated
via ef4d76eed6256abbdca2ddb97bf0e211dc358f81 (commit)
via a8777bd15821dd8b2ff8184bbd6a29267bded68d (commit)
from 14e2271398f9a642314f8e509ea823c3577cc7f3 (commit)
Summary of changes:
share/html/Elements/QueueSummaryByLifecycle | 2 +-
share/html/Ticket/Elements/ShowRequestorExtraInfo | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
- Log -----------------------------------------------------------------
commit a8777bd15821dd8b2ff8184bbd6a29267bded68d
Author: Thomas Sibley <trs at bestpractical.com>
Date: Tue Aug 17 17:29:34 2010 -0400
Use a different class name so we can more easily separate the fields from container
diff --git a/share/html/Ticket/Elements/ShowRequestorExtraInfo b/share/html/Ticket/Elements/ShowRequestorExtraInfo
index b803a29..a2b7f88 100644
--- a/share/html/Ticket/Elements/ShowRequestorExtraInfo
+++ b/share/html/Ticket/Elements/ShowRequestorExtraInfo
@@ -53,7 +53,7 @@
% $title = $fetch_columnmap->($attr,'title',[$attr]);
% }
% $title = $m->comp('/Elements/ScrubHTML', Content => $title);
-<span class="more-about-requestor-extra-info <% $fetch_columnmap->($attr,'attribute',[$attr]) %>" >
+<span class="more-about-requestor-extra-field <% $fetch_columnmap->($attr,'attribute',[$attr]) %>" >
<span class="label"> <% $title %></span>
% my @out;
% foreach my $subcol ( @{ $column->{output} } ) {
commit ef4d76eed6256abbdca2ddb97bf0e211dc358f81
Author: Thomas Sibley <trs at bestpractical.com>
Date: Tue Aug 17 17:32:29 2010 -0400
Avoid warnings about lc(undef) in perl 5.12
diff --git a/share/html/Elements/QueueSummaryByLifecycle b/share/html/Elements/QueueSummaryByLifecycle
index 535ec36..653e2c4 100644
--- a/share/html/Elements/QueueSummaryByLifecycle
+++ b/share/html/Elements/QueueSummaryByLifecycle
@@ -60,7 +60,7 @@
<%PERL>
my $i = 0;
for my $queue (@queues) {
- next if lc $queue->{Lifecycle} ne lc $lifecycle->name;
+ next if lc($queue->{Lifecycle} || '') ne lc $lifecycle->name;
$i++;
my $name = $queue->{Name};
-----------------------------------------------------------------------
More information about the Rt-commit
mailing list