[Rt-commit] r9421 - rt/branches/3.6-RELEASE/html/Elements
ruz at bestpractical.com
ruz at bestpractical.com
Tue Oct 23 16:41:08 EDT 2007
Author: ruz
Date: Tue Oct 23 16:41:07 2007
New Revision: 9421
Modified:
rt/branches/3.6-RELEASE/html/Elements/ShowLinks
Log:
* add closing tags for elements of lists
Modified: rt/branches/3.6-RELEASE/html/Elements/ShowLinks
==============================================================================
--- rt/branches/3.6-RELEASE/html/Elements/ShowLinks (original)
+++ rt/branches/3.6-RELEASE/html/Elements/ShowLinks Tue Oct 23 16:41:07 2007
@@ -51,7 +51,7 @@
<td class="value">
<ul>
% while (my $Link = $Ticket->DependsOn->Next) {
-<li><& ShowLink, URI => $Link->TargetURI &>
+<li><& ShowLink, URI => $Link->TargetURI &></li>
% }
</ul>
</td>
@@ -61,7 +61,7 @@
<td class="value">
<ul>
% while (my $Link = $Ticket->DependedOnBy->Next) {
-<li><& ShowLink, URI => $Link->BaseURI &>
+<li><& ShowLink, URI => $Link->BaseURI &></li>
% }
</ul>
</td>
@@ -71,7 +71,7 @@
<td class="value">
<ul>
% while (my $Link = $Ticket->MemberOf->Next) {
-<li><& ShowLink, URI => $Link->TargetURI &>
+<li><& ShowLink, URI => $Link->TargetURI &></li>
% }
</ul>
</td>
@@ -85,7 +85,7 @@
<td class="value">
<ul>
% while (my $Link = $Ticket->RefersTo->Next) {
-<li><& ShowLink, URI => $Link->TargetURI &>
+<li><& ShowLink, URI => $Link->TargetURI &></li>
% }
</ul>
</td>
@@ -96,7 +96,7 @@
<ul>
% while (my $Link = $Ticket->ReferredToBy->Next) {
% next if (UNIVERSAL::isa($Link->BaseObj, 'RT::Ticket') && $Link->BaseObj->Type eq 'reminder');
-<li><& ShowLink, URI => $Link->BaseURI &>
+<li><& ShowLink, URI => $Link->BaseURI &></li>
% }
</ul>
</td>
More information about the Rt-commit
mailing list