]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - plugins/qrcode/qrcode.php
Update application/security/LoginManager.php
[github/shaarli/Shaarli.git] / plugins / qrcode / qrcode.php
index 21908cee6817b33d1094651e9c58d7de910b260d..c1d237d5d664532a6912e5ee5ba34c80ce59ddea 100644 (file)
@@ -5,6 +5,7 @@
  * Display a QRCode icon in link list.
  */
 
+use Shaarli\Plugin\PluginManager;
 use Shaarli\Router;
 
 /**
@@ -21,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
         );