summaryrefslogtreecommitdiff
path: root/demos/time-tracker/protected/pages/TimeTracker/TimeEntryList.tpl
diff options
context:
space:
mode:
authorwei <>2006-07-28 07:56:03 +0000
committerwei <>2006-07-28 07:56:03 +0000
commitfbf05a159bc1a688940c16dc304eaaf140188b01 (patch)
tree9346b49526b9ef908e59039244b2f3c220f5a530 /demos/time-tracker/protected/pages/TimeTracker/TimeEntryList.tpl
parentff6db29dff9b4778b97d2234d08cdcc10770562a (diff)
Time-Tracker Demo: Escape html entities in output.
Diffstat (limited to 'demos/time-tracker/protected/pages/TimeTracker/TimeEntryList.tpl')
-rw-r--r--demos/time-tracker/protected/pages/TimeTracker/TimeEntryList.tpl6
1 files changed, 3 insertions, 3 deletions
diff --git a/demos/time-tracker/protected/pages/TimeTracker/TimeEntryList.tpl b/demos/time-tracker/protected/pages/TimeTracker/TimeEntryList.tpl
index ace8a95b..29f426ee 100644
--- a/demos/time-tracker/protected/pages/TimeTracker/TimeEntryList.tpl
+++ b/demos/time-tracker/protected/pages/TimeTracker/TimeEntryList.tpl
@@ -25,9 +25,9 @@
</prop:FooterTemplate>
<prop:ItemTemplate>
<tr>
- <td class="categoryName"><%# $this->DataItem->Category->Name %></td>
- <td class="description"><%# $this->DataItem->Description %></td>
- <td class="duration"><%# $this->DataItem->Duration %></td>
+ <td class="categoryName"><%# h($this->DataItem->Category->Name) %></td>
+ <td class="description"><%# h($this->DataItem->Description) %></td>
+ <td class="duration"><%# h($this->DataItem->Duration) %></td>
<td class="date">
<com:System.I18N.TDateFormat
Pattern="dd/MM/yyyy"