20240410#9

This commit is contained in:
User
2024-04-10 03:39:40 +03:00
parent bbaf319dc8
commit 94ada77e89

View File

@@ -81,7 +81,7 @@ class Content implements TemplateInterface {
foreach ($resource as $resKey => $resVal){
$this->{$resKey} = $resVal;
}
if(empty($incFile) || !file_exists(ContentData::$subtemplatePath.$incFile)) throw new AppError("Empty inc file");
if(empty($incFile) || !file_exists(ContentData::$subtemplatePath.$incFile)) throw new AppError("Empty inc file: ".$incFile);
ob_start(); include ContentData::$subtemplatePath.$incFile; $out = ob_get_contents(); ob_end_clean();
return $out;
}