diff options
| author | 2014-03-30 19:23:28 +0200 | |
|---|---|---|
| committer | 2014-03-30 19:23:34 +0200 | |
| commit | e80c482e53bf8715c5db7b3af07b4e9dbf133076 (patch) | |
| tree | add9f535408588331234eea9372496d5274e8906 /app/layout | |
| parent | ce3fbff61d7acf35ec91d892042734ca33b1bffd (diff) | |
Prevent click on bookmarklet
https://github.com/marienfressinaud/FreshRSS/issues/464
Diffstat (limited to 'app/layout')
| -rw-r--r-- | app/layout/aside_feed.phtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/layout/aside_feed.phtml b/app/layout/aside_feed.phtml index aac15d741..5ffb1c791 100644 --- a/app/layout/aside_feed.phtml +++ b/app/layout/aside_feed.phtml @@ -44,7 +44,7 @@ </form></li> <li class="item"> - <a href="javascript:(function(){var%20url%20=%20location.href;window.open('<?php echo Minz_Url::display(array('c' => 'feed', 'a' => 'add'), 'html', true); ?>&url_rss='+encodeURIComponent(url), '_blank');})();"> + <a onclick="return false;" href="javascript:(function(){var%20url%20=%20location.href;window.open('<?php echo Minz_Url::display(array('c' => 'feed', 'a' => 'add'), 'html', true); ?>&url_rss='+encodeURIComponent(url), '_blank');})();"> <?php echo Minz_Translate::t('bookmark'); ?> </a> </li> |
