Opps, fixed parser error ...

Signed-off-by: Roland Haeder <roland@mxchange.org>
This commit is contained in:
Roland Häder 2017-04-05 22:20:09 +02:00
parent 737a6670af
commit 5a28eae59d
No known key found for this signature in database
GPG Key ID: B72F8185C6C7BD78
1 changed files with 2 additions and 2 deletions

View File

@ -353,7 +353,7 @@ $called_api = null;
header ("Content-Type: application/json");
foreach ($r as $rr)
$json = json_encode($rr);
if ($_GET['callback']) {
if (x($_GET, 'callback')) {
$json = $_GET['callback'] . "(" . $json . ")";
}
return $json;
@ -2224,7 +2224,7 @@ $called_api = null;
} else {
$ret['text'] = $item['title'] . "\n" . html2plain(bbcode(api_clean_plain_items($item['body']), false, false, 2, true), 0);
}
if (x($_GET, 'getUserObjects']) && $_GET['getUserObjects'] == 'false') {
if (x($_GET, 'getUserObjects') && $_GET['getUserObjects'] == 'false') {
unset($ret['sender']);
unset($ret['recipient']);
}