always normalize paths

580-view-class-steroids
fadrian06 1 day ago
parent abdf845899
commit 6b506636f0

@ -96,9 +96,7 @@ class View
$template = $this->getTemplate($file); $template = $this->getTemplate($file);
if (!$this->exists($file)) { if (!$this->exists($file)) {
$normalized_path = $this::normalizePath($template); throw new Exception("Template file not found: $template.");
throw new Exception("Template file not found: $normalized_path.");
} }
extract($this->vars); extract($this->vars);
@ -156,7 +154,7 @@ class View
return $file; return $file;
} }
return $this->path . DIRECTORY_SEPARATOR . $file; return $this::normalizePath("$this->path/$file");
} }
/** /**

Loading…
Cancel
Save