test include return on FALSE
This commit is contained in:
parent
abc7c2f0f8
commit
545cdd0762
@ -3733,7 +3733,7 @@ abstract class CommonObject
|
|||||||
} else {
|
} else {
|
||||||
$res=include $tpl; // for debug
|
$res=include $tpl; // for debug
|
||||||
}
|
}
|
||||||
if ($res === TRUE) break;
|
if ($res !== FALSE) break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -3994,7 +3994,7 @@ abstract class CommonObject
|
|||||||
} else {
|
} else {
|
||||||
$res=include $tpl; // for debug
|
$res=include $tpl; // for debug
|
||||||
}
|
}
|
||||||
if ($res === TRUE) break;
|
if ($res !== FALSE) break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -4026,7 +4026,7 @@ abstract class CommonObject
|
|||||||
} else {
|
} else {
|
||||||
$res=include $tpl; // for debug
|
$res=include $tpl; // for debug
|
||||||
}
|
}
|
||||||
if ($res === TRUE) break;
|
if ($res !== FALSE) break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -4231,7 +4231,7 @@ abstract class CommonObject
|
|||||||
} else {
|
} else {
|
||||||
$res=include $tpl; // for debug
|
$res=include $tpl; // for debug
|
||||||
}
|
}
|
||||||
if ($res === TRUE) break;
|
if ($res !== FALSE) break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user