Changeset 586 for trunk/Modules/Translation/TranslationList.php
- Timestamp:
- Oct 7, 2013, 11:52:11 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Translation/TranslationList.php
r577 r586 131 131 // Words 132 132 $Filter['Text'] = GetParameter('text', '', false, true); 133 $Output .= '<td><input name="text" type="text" style="width: 60px;" value="'. $Filter['Text'].'"></td>';133 $Output .= '<td><input name="text" type="text" style="width: 60px;" value="'.htmlentities($Filter['Text']).'"></td>'; 134 134 if($Filter['Text'] != '') 135 135 { … … 144 144 // Entry 145 145 $Filter['Entry'] = GetParameter('entry', '', false, true); 146 $Output .= '<td><input name="entry" type="text" style="width: 60px;" value="'. $Filter['Entry'].'"></td>';146 $Output .= '<td><input name="entry" type="text" style="width: 60px;" value="'.htmlentities($Filter['Entry']).'"></td>'; 147 147 if($Filter['Entry'] != '') 148 148 {
Note:
See TracChangeset
for help on using the changeset viewer.