test include return on FALSE

This commit is contained in:
Christophe Battarel 2019-05-24 12:54:24 +02:00
parent abc7c2f0f8
commit 545cdd0762

View File

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