[Rt-commit] r11434 - rt/branches/3.6-RELEASE/html/SelfService/Elements

ruz at bestpractical.com ruz at bestpractical.com
Thu Apr 3 07:03:32 EDT 2008


Author: ruz
Date: Thu Apr  3 07:03:30 2008
New Revision: 11434

Modified:
   rt/branches/3.6-RELEASE/html/SelfService/Elements/MyRequests

Log:
* use scalar instead of array. that was really confusing.
  no functional changes. Thanks to Nicholas Clark

Modified: rt/branches/3.6-RELEASE/html/SelfService/Elements/MyRequests
==============================================================================
--- rt/branches/3.6-RELEASE/html/SelfService/Elements/MyRequests	(original)
+++ rt/branches/3.6-RELEASE/html/SelfService/Elements/MyRequests	Thu Apr  3 07:03:30 2008
@@ -47,7 +47,7 @@
 %# END BPS TAGGED BLOCK }}}
 <&| /Widgets/TitleBox, title =>  $title &>
 <& /Elements/TicketList, Title   => $title,
-			 Format  => @Format, 
+			 Format  => $Format, 
 			 Query   => $Query, 
 			 Order   => $Order, 
 			 OrderBy => $OrderBy,
@@ -67,7 +67,7 @@
 }
 my $Order = "ASC";
 my $OrderBy = "Created";
-my @Format = qq{
+my $Format = qq{
    '<B><A HREF="$RT::WebPath/SelfService/Display.html?id=__id__">__id__</a></B>/TITLE:#',
    '<B><A HREF="$RT::WebPath/SelfService/Display.html?id=__id__">__Subject__</a></B>/TITLE:Subject',
    Status,


More information about the Rt-commit mailing list