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 6c9c0b5 commit 9cb2f3e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libraries/TableSearch.class.php
Original file line number Diff line number Diff line change
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 9cb2f3e

Please sign in to comment.