Merge pull request #1309 from ArthurHoaro/feature/qrcode-link

Remove QRCode link to an external service
This commit is contained in:
ArthurHoaro 2019-05-30 10:54:02 +02:00 committed by GitHub
commit 86aa248654
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View File

@ -1,5 +1,5 @@
<div class="linkqrcode">
<a href="http://qrfree.kaywa.com/?l=1&amp;s=8&amp;d=%s" onclick="showQrCode(this); return false;" class="qrcode" data-permalink="%s">
<a href="#" onclick="showQrCode(this); return false;" class="qrcode" data-permalink="%s">
<img src="%s/qrcode/qrcode.png" class="linklist-plugin-icon" title="QR-Code" alt="QRCode">
</a>
</div>

View File

@ -22,7 +22,6 @@ function hook_qrcode_render_linklist($data)
foreach ($data['links'] as &$value) {
$qrcode = sprintf(
$qrcode_html,
urlencode($value['url']),
$value['url'],
PluginManager::$PLUGINS_PATH
);