finally eldy is always right

This commit is contained in:
Christophe Battarel 2019-05-24 15:14:34 +02:00
parent 4863ddcb00
commit 83d883c36a

View File

@ -3733,7 +3733,7 @@ abstract class CommonObject
} else { } else {
$res=include $tpl; // for debug $res=include $tpl; // for debug
} }
if ($res !== FALSE) break; if ($res) break;
} }
} }
@ -3994,7 +3994,7 @@ abstract class CommonObject
} else { } else {
$res=include $tpl; // for debug $res=include $tpl; // for debug
} }
if ($res !== FALSE) break; if ($res) break;
} }
} }
@ -4026,7 +4026,7 @@ abstract class CommonObject
} else { } else {
$res=include $tpl; // for debug $res=include $tpl; // for debug
} }
if ($res !== FALSE) break; if ($res) break;
} }
} }
} }
@ -4231,7 +4231,7 @@ abstract class CommonObject
} else { } else {
$res=include $tpl; // for debug $res=include $tpl; // for debug
} }
if ($res !== FALSE) break; if ($res) break;
} }
} }