Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(JSResourceLocator): fix incorrect parameter being used
Signed-off-by: Git'Fellow <[email protected]>
  • Loading branch information
solracsf committed Apr 29, 2025
commit b751eea309529879497348b68e7a83016566e19e
2 changes: 1 addition & 1 deletion lib/private/Template/JSResourceLocator.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public function doFind($script) {
|| $this->appendScriptIfExist($this->serverroot, "dist/$app-$scriptName")
|| $this->appendScriptIfExist($appRoot, $script, $appWebRoot)
|| $this->cacheAndAppendCombineJsonIfExist($this->serverroot, $script.'.json')
|| $this->cacheAndAppendCombineJsonIfExist($appRoot, $script.'.json', $appWebRoot)
|| $this->cacheAndAppendCombineJsonIfExist($appRoot, $script.'.json', $app)
|| $this->appendScriptIfExist($this->serverroot, $theme_dir.'core/'.$script)
|| $this->appendScriptIfExist($this->serverroot, 'core/'.$script)
|| (strpos($scriptName, '/') === -1 && ($this->appendScriptIfExist($this->serverroot, $theme_dir."dist/core-$scriptName")
Expand Down
Loading