diff options
| author | 2022-11-14 14:54:57 +0100 | |
|---|---|---|
| committer | 2022-11-14 14:54:57 +0100 | |
| commit | 1f86aae415951b3a5c83d092765fa92337fc29ee (patch) | |
| tree | b610bdcd18bffefead261ff6e2bda09d608a7e1d /app/shares.php | |
| parent | 37cc854d1275b28fca8104477fa1e6558e6516ba (diff) | |
fix: sharing service for mailto links for web mail services (#4680)
* fix
* Update main.js
* Update app/i18n/fr/gen.php
Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
Diffstat (limited to 'app/shares.php')
| -rw-r--r-- | app/shares.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/shares.php b/app/shares.php index 8685dba5d..490f97ab5 100644 --- a/app/shares.php +++ b/app/shares.php @@ -61,6 +61,12 @@ return array( 'form' => 'simple', 'method' => 'GET', ), + 'email-webmail-firefox-fix' => array( // see https://github.com/FreshRSS/FreshRSS/issues/2666 + 'url' => 'mailto:?subject=~TITLE~&body=~LINK~', + 'transform' => array('rawurlencode'), + 'form' => 'simple', + 'method' => 'GET', + ), 'facebook' => array( 'url' => 'https://www.facebook.com/sharer.php?u=~LINK~&t=~TITLE~', 'transform' => array('rawurlencode'), |
