Scarab commit: svn commit: r10190 - branches/release/b21/src/webapp/WEB-INF/templates/viewIssue/ViewIssueTab1.vm
[email protected] 26 Jun 2006 22:43:25 -0000
Newsgroups
gmane.comp.java.scarab.cvs
Message-ID
<[email protected] >
Author: dabbous
Date: 2006-06-26 15:43:24-0700
New Revision: 10190
Modified:
branches/release/b21/src/webapp/WEB-INF/templates/viewIssue/ViewIssueTab1.vm
Log:
fixed SCB1739 (blocking link was not working)
Modified: branches/release/b21/src/webapp/WEB-INF/templates/viewIssue/ViewIssueTab1.vm
Url: http://scarab.tigris.org/source/browse/scarab/branches/release/b21/src/webapp/WEB-INF/templates/viewIssue/ViewIssueTab1.vm?view=diff&rev=10190&p1=branches/release/b21/src/webapp/WEB-INF/templates/viewIssue/ViewIssueTab1.vm&p2=branches/release/b21/src/webapp/WEB-INF/templates/viewIssue/ViewIssueTab1.vm&r1=10189&r2=10190
==============================================================================
--- branches/release/b21/src/webapp/WEB-INF/templates/viewIssue/ViewIssueTab1.vm (original)
+++ branches/release/b21/src/webapp/WEB-INF/templates/viewIssue/ViewIssueTab1.vm 2006-06-26 15:43:24-0700
@@ -1,5 +1,5 @@
#macro (initializeTabLink)
- #set ($tabLink = $link.setPage("ViewIssue.vm").addPathInfo("id", "$currentIssue.UniqueId").addPathInfo("eventSubmit_doSetissueview", "foo").setAction("ViewIssue").toString())
+ #set ($tabLink = $link.setPage("ViewIssue.vm").addPathInfo("id", "$currentIssue.UniqueId").addPathInfo("eventSubmit_doSetissueview", "foo").setAction("ViewIssue"))
#foreach ($prevNextId in $prevNextList)
#set ($dummy = $tabLink.addPathInfo("issueList", $prevNextId))
#end
@@ -19,12 +19,10 @@
<td width="*">
#initializeTabLink()
#if ($currentIssue.isBlocked())
- <a class="blockedmark" STYLE="text-decoration: none" title="$l10n.IssueCurrentlyBlocked" href="$tabLink.addPathInfo("tab", "6")">$l10n.BlockedWarning</a>
+ <a class="blockedmark" STYLE="text-decoration: none" title="$l10n.IssueCurrentlyBlocked" href='$tabLink.addPathInfo("tab", "6")'>$l10n.BlockedWarning</a>
#end
-
- #initializeTabLink()
#if ($currentIssue.isBlockingAnyIssue())
- <a class="blockingmark" STYLE="text-decoration: none" title="$l10n.IssueDoesBlockOtherIssues" href="$tabLink.addPathInfo("tab", "6")">$l10n.BlockingWarning</a>
+ <a class="blockingmark" STYLE="text-decoration: none" title="$l10n.IssueDoesBlockOtherIssues" href='$tabLink.addPathInfo("tab", "6")'>$l10n.BlockingWarning</a>
#end
</td>
</tr>