test include return on TRUE

This commit is contained in:
Christophe Battarel
2019-05-24 12:33:40 +02:00
parent aaaad71347
commit abc7c2f0f8

View File

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