aboutsummaryrefslogtreecommitdiffstats
path: root/include/api.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/api.php')
-rw-r--r--include/api.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/api.php b/include/api.php
index 32579fe7d..52ae2fd69 100644
--- a/include/api.php
+++ b/include/api.php
@@ -1604,8 +1604,10 @@
//don't send title to regular StatusNET requests to avoid confusing these apps
if (isset($_GET["getText"])) {
$d['title'] = $item['title'] ;
- if ($_GET["getText"] == "true") {
+ if ($_GET["getText"] == "html") {
$d['text'] = bbcode($item['body']);
+ } elseif ($_GET["getText"] == "plain") {
+ $d['text'] = html2plain(bbcode($item['body']), 0);
}
} else {
$d['text'] = $item['title']."\n".html2plain(bbcode($item['body']), 0);