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.
1 parent 8273c1f commit 2ff1ad9Copy full SHA for 2ff1ad9
src/Managers/Theme.php
@@ -203,9 +203,8 @@ public function getFullPath($path)
203
204
$themeInfo = $this->getThemeInfo($themeName);
205
206
- if ( $this->config[ 'theme.symlink' ] ) {
207
- if ($this->config['theme.symlink']) {
208
-+ $themePath = str_replace(base_path('public').DIRECTORY_SEPARATOR, '', $this->config['theme.symlink_path']).DIRECTORY_SEPARATOR;
+ if ($this->config['theme.symlink']) {
+ $themePath = str_replace(base_path('public').DIRECTORY_SEPARATOR, '', $this->config['theme.symlink_path']).DIRECTORY_SEPARATOR.$themeName.DIRECTORY_SEPARATOR;
209
} else {
210
$themePath = str_replace(base_path('public').DIRECTORY_SEPARATOR, '', $themeInfo->get('path')).DIRECTORY_SEPARATOR;
211
}
0 commit comments