Commit 6d38f70671da09165ae80840190e572461d5ab48
1 parent
b94ebc7a
fixed candy striping
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@2727 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
1 additions
and
1 deletions
presentation/lookAndFeel/knowledgeTree/subscriptions/subscriptionUI.inc
| ... | ... | @@ -64,7 +64,7 @@ function renderManagePage() { |
| 64 | 64 | } |
| 65 | 65 | for ($i = 0; $i < count($aDocumentSubscriptions); $i++) { |
| 66 | 66 | $sToRender .= "\t<tr>\n"; |
| 67 | - $sToRender .= "\t\t<td bgcolor=\"" . getColour($i) . "\">\n"; | |
| 67 | + $sToRender .= "\t\t<td bgcolor=\"" . getColour($i+count($aFolderSubscriptions)) . "\">\n"; | |
| 68 | 68 | $sToRender .= "<input type=\"checkbox\" name=\"fDocumentSubscriptionIDs[]\" value=\"" . $aDocumentSubscriptions[$i]->getID() . "\"/>\n"; |
| 69 | 69 | if ($aDocumentSubscriptions[$i]->getIsAlerted()) { |
| 70 | 70 | $sToRender .= $aDocumentSubscriptions[$i]->getAlertLink() . "\n"; | ... | ... |