summaryrefslogtreecommitdiff
path: root/plugins/mailto/init.php
diff options
context:
space:
mode:
authorYoungMin Park <[email protected]>2014-11-04 11:49:43 +0900
committerYoungMin Park <[email protected]>2014-11-04 11:49:43 +0900
commita5bbb2bec133bdee08b361628f32430ae3884107 (patch)
treeb203105149ec234ebe155d5718d2cbb6390b4a45 /plugins/mailto/init.php
parent12727ad17d125eb2f3f243231ccca1cb0a5a7b4b (diff)
parent2f43089de1ead3f164b8b31967d1abbb784319fa (diff)
Merge pull request #1 from gothfox/master
Update from original
Diffstat (limited to 'plugins/mailto/init.php')
-rw-r--r--plugins/mailto/init.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mailto/init.php b/plugins/mailto/init.php
index aa6d173f8..12f80ec89 100644
--- a/plugins/mailto/init.php
+++ b/plugins/mailto/init.php
@@ -41,7 +41,7 @@ class MailTo extends Plugin {
$tpl->setVariable('TTRSS_HOST', $_SERVER["HTTP_HOST"], true);
- $result = db_query("SELECT link, content, title
+ $result = db_query("SELECT DISTINCT link, content, title
FROM ttrss_user_entries, ttrss_entries WHERE id = ref_id AND
id IN ($param) AND owner_uid = " . $_SESSION["uid"]);
@@ -65,7 +65,7 @@ class MailTo extends Plugin {
$content = "";
$tpl->generateOutputToString($content);
- $mailto_link = htmlspecialchars("mailto: ?subject=".rawurlencode($subject).
+ $mailto_link = htmlspecialchars("mailto:?subject=".rawurlencode($subject).
"&body=".rawurlencode($content));
print __("Clicking the following link to invoke your mail client:");