check if BasePath is empty to prevent mangeled up CSS path

This commit is contained in:
Tobias Diekershoff 2019-03-30 11:13:27 +01:00
parent 1c2a77c47f
commit bb8216cbc8
1 changed files with 5 additions and 1 deletions

View File

@ -182,7 +182,11 @@ class App
*/
public function registerStylesheet($path)
{
$url = str_replace($this->getBasePath() . DIRECTORY_SEPARATOR, '', $path);
if (!empty($this->getBasePath())) {
$url = str_replace($this->getBasePath() . DIRECTORY_SEPARATOR, '', $path);
} else {
$url = $path;
}
$this->stylesheets[] = trim($url, '/');
}