From dab290ef2c765fa5097ea18c04c25d5e52a5170b Mon Sep 17 00:00:00 2001
From: Satoshi Sahara <sahara.satoshi@gmail.com>
Date: Fri, 11 Mar 2016 21:42:36 +0900
Subject: [PATCH] usie a strict comparison === instead

---
 inc/html.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/inc/html.php b/inc/html.php
index b1cc13c8d..c3cc66aa9 100644
--- a/inc/html.php
+++ b/inc/html.php
@@ -898,7 +898,7 @@ function html_index($ns){
     $ns  = cleanID($ns);
     if(empty($ns)){
         $ns = getNS($ID);
-        if($ns == false) $ns ='';
+        if($ns === false) $ns ='';
     }
     $ns  = utf8_encodeFN(str_replace(':','/',$ns));
 
-- 
GitLab