Fix loose comparison

Signed-off-by: Marc Delisle <marc@infomarc.info>
This commit is contained in:
Marc Delisle 2015-04-28 14:05:50 -04:00
parent a4f28e9afc
commit b54a5916c9

View File

@ -679,10 +679,10 @@ function PMA_printListItem($name, $listId = null, $url = null,
if (null !== $target) {
echo ' target="' . $target . '"';
}
if (null != $a_id) {
if (null !== $a_id) {
echo ' id="' . $a_id . '"';
}
if (null != $a_class) {
if (null !== $a_class) {
echo ' class="' . $a_class . '"';
}
echo '>';