]> git.immae.eu Git - github/shaarli/Shaarli.git/commitdiff
Fix broken css/js files on individual shaare pages 1546/head
authorImmánuel! <21174107+immanuelfodor@users.noreply.github.com>
Sun, 6 Sep 2020 11:29:38 +0000 (13:29 +0200)
committerGitHub <noreply@github.com>
Sun, 6 Sep 2020 11:29:38 +0000 (13:29 +0200)
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;