We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 58d71ef + 9537b47 commit fee06e4Copy full SHA for fee06e4
src/Managers/Theme.php
@@ -212,7 +212,7 @@ public function getFullPath($path)
212
$assetPath = $this->config['theme.folders.assets'].DIRECTORY_SEPARATOR;
213
$fullPath = $themePath.$assetPath.$path;
214
215
- if (!file_exists($fullPath) && $themeInfo->has('parent') && !empty($themeInfo->get('parent'))) {
+ if (isset($themeInfo) && !file_exists($fullPath) && $themeInfo->has('parent') && !empty($themeInfo->get('parent'))) {
216
$themePath = str_replace(base_path().DIRECTORY_SEPARATOR, '', $this->getThemeInfo($themeInfo->get('parent'))->get('path')).DIRECTORY_SEPARATOR;
217
218
0 commit comments