Skip to content

Commit

Permalink
Remove issue with un expected string in table relation view
Browse files Browse the repository at this point in the history
  • Loading branch information
Chanaka committed Nov 12, 2012
1 parent e0fac14 commit ae6a1d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tbl_relation.php
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ function PMA_backquoteSplit($text)
$myfield_md5 = md5($myfield);
$myfield_html = htmlspecialchars($myfield);

echo '<tr class="' . $odd_row ? 'odd' : 'even' . '">';
echo '<tr class="' . ($odd_row ? 'odd' : 'even') . '">';
$odd_row = ! $odd_row;
echo '<td class="center">';
echo '<strong>' . $myfield_html . '</strong>';
Expand Down

0 comments on commit ae6a1d6

Please sign in to comment.