Skip to content

Commit

Permalink
Bug 4544: additional fix for 4.2.x
Browse files Browse the repository at this point in the history
Signed-off-by: Marc Delisle <marc@infomarc.info>
  • Loading branch information
lem9 committed Oct 1, 2014
1 parent c1a3f85 commit 304fb2b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libraries/TableSearch.class.php
Expand Up @@ -992,7 +992,8 @@ private function _getRowsNormal()
$html_output .= '<td>' . $properties['collation'] . '</td>';
$html_output .= '<td>' . $properties['func'] . '</td>';
// here, the data-type attribute is needed for a date/time picker
$html_output .= '<td data-type="' . $properties['type'] . '"'
$html_output .= '<td data-type="'
. htmlspecialchars($properties['type']) . '"'
. '>' . $properties['value'] . '</td>';
$html_output .= '</tr>';
//Displays hidden fields
Expand Down

0 comments on commit 304fb2b

Please sign in to comment.