diff --git a/modules/ldapstatus/www/index.php b/modules/ldapstatus/www/index.php
index f92a08cdea85392ffff5ab40473ff6bcc630065d..f48e94bb166089358701895654daab692e063183 100644
--- a/modules/ldapstatus/www/index.php
+++ b/modules/ldapstatus/www/index.php
@@ -41,7 +41,7 @@ function checkConfig($conf, $req) {
 	foreach($req AS $r) {
 		if (!array_key_exists($r, $conf)) {
 			$err[] = $r;
-		} elseif (empty($conf[$r])) {
+		} elseif (empty($conf[$r]) && $conf[$r] !== FALSE) {
 			$err[] = 'empty:' . $r;
 		}
 	}