]> git.immae.eu Git - github/shaarli/Shaarli.git/commitdiff
Merge pull request #1546 from immanuelfodor/patch-2
authorArthurHoaro <arthur@hoa.ro>
Sun, 6 Sep 2020 11:38:31 +0000 (13:38 +0200)
committerGitHub <noreply@github.com>
Sun, 6 Sep 2020 11:38:31 +0000 (13:38 +0200)
Fix broken css/js files on individual shaare pages

plugins/qrcode/qrcode.php

index 3b5dae344dd63c3b688fc2d40ee8ff2af99e8f09..56ae47b30ad29b9ff46e085108b7e06c8638d61b 100644 (file)
@@ -42,7 +42,7 @@ function hook_qrcode_render_linklist($data)
 function hook_qrcode_render_footer($data)
 {
     if ($data['_PAGE_'] == TemplatePage::LINKLIST) {
-        $data['js_files'][] =  PluginManager::$PLUGINS_PATH . '/qrcode/shaarli-qrcode.js';
+        $data['js_files'][] =  ($data['_BASE_PATH_'] ?? '') . '/' . PluginManager::$PLUGINS_PATH . '/qrcode/shaarli-qrcode.js';
     }
 
     return $data;
@@ -58,7 +58,7 @@ function hook_qrcode_render_footer($data)
 function hook_qrcode_render_includes($data)
 {
     if ($data['_PAGE_'] == TemplatePage::LINKLIST) {
-        $data['css_files'][] = PluginManager::$PLUGINS_PATH . '/qrcode/qrcode.css';
+        $data['css_files'][] = ($data['_BASE_PATH_'] ?? '') . '/' . PluginManager::$PLUGINS_PATH . '/qrcode/qrcode.css';
     }
 
     return $data;