aboutsummaryrefslogtreecommitdiffhomepage
path: root/plugins/qrcode
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2019-05-25 17:00:23 +0200
committerArthurHoaro <arthur@hoa.ro>2019-05-25 17:00:23 +0200
commit5c003824a31f00a4eda53e56e49916db98fab18d (patch)
tree40e8066c0026d96c81ad62de43174a3458ae19de /plugins/qrcode
parentc3a04e328f2c8d40890b0b26b118a193110634ce (diff)
downloadShaarli-5c003824a31f00a4eda53e56e49916db98fab18d.tar.gz
Shaarli-5c003824a31f00a4eda53e56e49916db98fab18d.tar.zst
Shaarli-5c003824a31f00a4eda53e56e49916db98fab18d.zip
Remove QRCode link to an external service
Diffstat (limited to 'plugins/qrcode')
-rw-r--r--plugins/qrcode/qrcode.html2
-rw-r--r--plugins/qrcode/qrcode.php1
2 files changed, 1 insertions, 2 deletions
diff --git a/plugins/qrcode/qrcode.html b/plugins/qrcode/qrcode.html
index dc214ed1..a21f7932 100644
--- a/plugins/qrcode/qrcode.html
+++ b/plugins/qrcode/qrcode.html
@@ -1,5 +1,5 @@
1<div class="linkqrcode"> 1<div class="linkqrcode">
2 <a href="http://qrfree.kaywa.com/?l=1&amp;s=8&amp;d=%s" onclick="showQrCode(this); return false;" class="qrcode" data-permalink="%s"> 2 <a href="#" onclick="showQrCode(this); return false;" class="qrcode" data-permalink="%s">
3 <img src="%s/qrcode/qrcode.png" class="linklist-plugin-icon" title="QR-Code" alt="QRCode"> 3 <img src="%s/qrcode/qrcode.png" class="linklist-plugin-icon" title="QR-Code" alt="QRCode">
4 </a> 4 </a>
5</div> 5</div>
diff --git a/plugins/qrcode/qrcode.php b/plugins/qrcode/qrcode.php
index 34eef8be..c1d237d5 100644
--- a/plugins/qrcode/qrcode.php
+++ b/plugins/qrcode/qrcode.php
@@ -22,7 +22,6 @@ function hook_qrcode_render_linklist($data)
22 foreach ($data['links'] as &$value) { 22 foreach ($data['links'] as &$value) {
23 $qrcode = sprintf( 23 $qrcode = sprintf(
24 $qrcode_html, 24 $qrcode_html,
25 urlencode($value['url']),
26 $value['url'], 25 $value['url'],
27 PluginManager::$PLUGINS_PATH 26 PluginManager::$PLUGINS_PATH
28 ); 27 );