From 128b3367880fd18e4179123b4e533d14902b484c Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Sun, 8 Mar 2020 00:08:20 +0100 Subject: Fix share warning with Wallabag (#2817) #fix https://github.com/FreshRSS/FreshRSS/issues/2812 Co-authored-by: Frans de Jonge --- app/shares.php | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'app/shares.php') diff --git a/app/shares.php b/app/shares.php index 7778dbd5c..daca836bf 100644 --- a/app/shares.php +++ b/app/shares.php @@ -39,20 +39,14 @@ return array( ), 'wallabag' => array( 'url' => '~URL~?action=add&url=~LINK~', - 'transform' => array( - 'link' => array('base64_encode'), - 'title' => array(), - ), + 'transform' => array('rawurlencode'), 'help' => 'http://www.wallabag.org/', 'form' => 'advanced', 'method' => 'GET', ), 'wallabagv2' => array( 'url' => '~URL~/bookmarklet?url=~LINK~', - 'transform' => array( - 'link' => array('rawurlencode'), - 'title' => array(), - ), + 'transform' => array('rawurlencode'), 'help' => 'http://www.wallabag.org/', 'form' => 'advanced', 'method' => 'GET', -- cgit v1.2.3