Commit 7f975692bfb173425e0c128418622139a623a663
1 parent
48c7a59e
removed nowrap
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@2177 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
1 additions
and
2 deletions
lib/visualpatterns/PatternListFromQuery.inc
| ... | ... | @@ -96,8 +96,7 @@ class PatternListFromQuery { |
| 96 | 96 | switch ($this->aColumnTypes[$i]) { |
| 97 | 97 | //plain text field |
| 98 | 98 | case 1: |
| 99 | - // TODO: make nowrap optional | |
| 100 | - $sToRender .= "<td nowrap bgcolor=\"$sTDBGColour\">" . $this->aColumnNames[$i] . "</td><td width=\"100%\" nowrap bgcolor=\"" . getColour($iColour) ."\">" . stripslashes($sql->f($this->aColumns[$i])) . "</td>\n"; | |
| 99 | + $sToRender .= "<td nowrap bgcolor=\"$sTDBGColour\">" . $this->aColumnNames[$i] . "</td><td width=\"100%\" bgcolor=\"" . getColour($iColour) ."\">" . stripslashes($sql->f($this->aColumns[$i])) . "</td>\n"; | |
| 101 | 100 | break; |
| 102 | 101 | //text area |
| 103 | 102 | case 2: | ... | ... |