Skip to content

Commit

Permalink
Fix #1220 Use relative and not absolute link for the symlink
Browse files Browse the repository at this point in the history
  • Loading branch information
edhelas committed Jul 22, 2023
1 parent 1e545a6 commit c95ae58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Movim/Widget/Base.php
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ protected function addjs(string $filename)
*/
private function cacheFile(string $filename)
{
$local = WIDGETS_PATH . get_class($this) . '/' . $filename;
$local = '../../app/widgets/' . get_class($this) . '/' . $filename;
$cache = PUBLIC_CACHE_PATH . get_class($this) . '_' . $filename;
$path = 'cache/' . get_class($this) . '_' . $filename;

Expand Down

0 comments on commit c95ae58

Please sign in to comment.