From b54a5916c912b89b17dfa9d5dfec633350f7254c Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Tue, 28 Apr 2015 14:05:50 -0400 Subject: [PATCH] Fix loose comparison Signed-off-by: Marc Delisle --- index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.php b/index.php index 13b18eea5f..bb4e12742a 100644 --- a/index.php +++ b/index.php @@ -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 '>';