aboutsummaryrefslogtreecommitdiffstats
path: root/include/api.php
diff options
context:
space:
mode:
authorfriendica <redmatrix@redmatrix.me>2015-04-19 13:41:12 -0700
committerfriendica <redmatrix@redmatrix.me>2015-04-19 13:41:12 -0700
commit01efda6850db9347351f290da6026d6cbc0abe49 (patch)
tree5df63503014a1f7e06483ddf06cca0f21a44e23a /include/api.php
parent0883512e30af10ea7ed0f461afc8236a828e7d2b (diff)
downloadvolse-hubzilla-01efda6850db9347351f290da6026d6cbc0abe49.tar.gz
volse-hubzilla-01efda6850db9347351f290da6026d6cbc0abe49.tar.bz2
volse-hubzilla-01efda6850db9347351f290da6026d6cbc0abe49.zip
api - unobscure mail
Diffstat (limited to 'include/api.php')
-rw-r--r--include/api.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/api.php b/include/api.php
index e4b28bc54..4b413a835 100644
--- a/include/api.php
+++ b/include/api.php
@@ -1588,7 +1588,7 @@ require_once('include/items.php');
return($as);
}
- function api_format_messages($item, $recipient, $sender) {
+ function api_format_message($item, $recipient, $sender) {
// standard meta information
$ret = array(
'id' => $item['id'],
@@ -1600,7 +1600,7 @@ require_once('include/items.php');
'recipient_screen_name' => $recipient['screen_name'],
'recipient' => $recipient,
);
- unobscure($item);
+ unobscure_mail($item);
//don't send title to regular StatusNET requests to avoid confusing these apps
if (x($_GET, 'getText')) {
$ret['title'] = $item['title'] ;
@@ -1963,7 +1963,7 @@ require_once('include/items.php');
if ($id>-1) {
$r = q("SELECT * FROM `mail` WHERE id=%d", intval($id));
- $ret = api_format_messages($r[0], $recipient, $sender);
+ $ret = api_format_message($r[0], $recipient, $sender);
} else {
$ret = array("error"=>$id);
@@ -2028,7 +2028,7 @@ require_once('include/items.php');
$sender = $user_info;
}
- $ret[]=api_format_messages($item, $recipient, $sender);
+ $ret[]=api_format_message($item, $recipient, $sender);
}
}