aboutsummaryrefslogtreecommitdiffstats
path: root/include/items.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-08-06 03:54:49 -0700
committerfriendica <info@friendica.com>2013-08-06 03:54:49 -0700
commit24b9799dcad3dc4a224ce2ceaf52645657106a60 (patch)
tree0230360c1c7f4ec9d05f5846fb297dc3500d1470 /include/items.php
parent71347bb9e0c5daca206b0ea32812874e165b7b63 (diff)
downloadvolse-hubzilla-24b9799dcad3dc4a224ce2ceaf52645657106a60.tar.gz
volse-hubzilla-24b9799dcad3dc4a224ce2ceaf52645657106a60.tar.bz2
volse-hubzilla-24b9799dcad3dc4a224ce2ceaf52645657106a60.zip
convert all stored json calls to json_decode_plus()
Diffstat (limited to 'include/items.php')
-rwxr-xr-xinclude/items.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/items.php b/include/items.php
index 2d8189010..b02e27ce0 100755
--- a/include/items.php
+++ b/include/items.php
@@ -621,9 +621,9 @@ function encode_item($item) {
if(array_key_exists('item_flags',$item) && ($item['item_flags'] & ITEM_OBSCURED)) {
$key = get_config('system','prvkey');
if($item['title'])
- $item['title'] = aes_unencapsulate(json_decode($item['title'],true),$key);
+ $item['title'] = aes_unencapsulate(json_decode_plus($item['title']),$key);
if($item['body'])
- $item['body'] = aes_unencapsulate(json_decode($item['body'],true),$key);
+ $item['body'] = aes_unencapsulate(json_decode_plus($item['body']),$key);
}
if($item['item_restrict'] & ITEM_DELETED) {
@@ -655,11 +655,11 @@ function encode_item($item) {
$x['owner'] = encode_item_xchan($item['owner']);
$x['author'] = encode_item_xchan($item['author']);
if($item['object'])
- $x['object'] = json_decode($item['object'],true);
+ $x['object'] = json_decode_plus($item['object']);
if($item['target'])
- $x['target'] = json_decode($item['target'],true);
+ $x['target'] = json_decode_plus($item['target']);
if($item['attach'])
- $x['attach'] = json_decode($item['attach'],true);
+ $x['attach'] = json_decode_plus($item['attach']);
if($y = encode_item_flags($item))
$x['flags'] = $y;
@@ -821,9 +821,9 @@ function encode_mail($item) {
if(array_key_exists('mail_flags',$item) && ($item['mail_flags'] & MAIL_OBSCURED)) {
$key = get_config('system','prvkey');
if($item['title'])
- $item['title'] = aes_unencapsulate(json_decode($item['title'],true),$key);
+ $item['title'] = aes_unencapsulate(json_decode_plus($item['title']),$key);
if($item['body'])
- $item['body'] = aes_unencapsulate(json_decode($item['body'],true),$key);
+ $item['body'] = aes_unencapsulate(json_decode_plus($item['body']),$key);
}
$x['message_id'] = $item['mid'];
@@ -1939,14 +1939,14 @@ function tag_deliver($uid,$item_id) {
logger('tag_deliver: community tag activity received');
if(($item['owner_xchan'] === $u[0]['channel_hash']) && (! get_pconfig($u[0]['channel_id'],'system','blocktags'))) {
- $j_tgt = json_decode($item['target'],true);
+ $j_tgt = json_decode_plus($item['target']);
if($j_tgt && $j_tgt['id']) {
$p = q("select * from item where mid = '%s' and uid = %d limit 1",
dbesc($j_tgt['id']),
intval($u[0]['channel_id'])
);
if($p) {
- $j_obj = json_decode($item['object'],true);
+ $j_obj = json_decode_plus($item['object']);
logger('tag_deliver: tag object: ' . print_r($j_obj,true), LOGGER_DATA);
if($j_obj && $j_obj['id'] && $j_obj['title']) {
if(is_array($j_obj['link']))