mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 18:55:55 +00:00
bookmarklet: encode URL properly so special characters won't get lost
This commit is contained in:
@@ -28,7 +28,7 @@ class Bookmarklets extends Plugin {
|
||||
|
||||
$confirm_str = str_replace("'", "\'", __('Subscribe to %s in Tiny Tiny RSS?'));
|
||||
|
||||
$bm_url = htmlspecialchars("javascript:{if(confirm('$confirm_str'.replace('%s',window.location.href)))window.location.href='$bm_subscribe_url'+window.location.href}");
|
||||
$bm_url = htmlspecialchars("javascript:{if(confirm('$confirm_str'.replace('%s',window.location.href)))window.location.href='$bm_subscribe_url'+encodeURIComponent(window.location.href)}");
|
||||
|
||||
print "<p><label class='dijitButton'>";
|
||||
print "<a href=\"$bm_url\">" . __('Subscribe in Tiny Tiny RSS'). "</a>";
|
||||
|
||||
Reference in New Issue
Block a user