Fix loose comparison
Signed-off-by: Marc Delisle <marc@infomarc.info>
This commit is contained in:
parent
a4f28e9afc
commit
b54a5916c9
@ -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 '>';
|
||||
|
||||
Loading…
Reference in New Issue
Block a user