Skip to content

Commit

Permalink
remove weird string from tbl operation page
Browse files Browse the repository at this point in the history
  • Loading branch information
thilinaa committed Aug 15, 2012
1 parent 9948b26 commit 94aacf8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/operations.lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -906,9 +906,9 @@ function PMA_getHtmlForTableRow($attribute, $label, $val)
. '<td><input type="checkbox" name="'. $attribute .'" '
. 'id="' . $attribute .'"'
. 'value="1"'
. (!empty($val) && $val == 1)
. ((!empty($val) && $val == 1)
? ' checked="checked"'
: ''
: '')
. '/>'
. '</td></tr>';
}
Expand Down

0 comments on commit 94aacf8

Please sign in to comment.