diff options
author | friendica <info@friendica.com> | 2012-11-26 21:20:16 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-11-26 21:20:16 -0800 |
commit | 941c554031de5a7ccb9dd685bec36cead508d41c (patch) | |
tree | 361b9530ddd1c1424e34d3e11ce518f941071bee /mod | |
parent | ed9d7257b03a585bbdd76241e5b49668eb6fc309 (diff) | |
download | volse-hubzilla-941c554031de5a7ccb9dd685bec36cead508d41c.tar.gz volse-hubzilla-941c554031de5a7ccb9dd685bec36cead508d41c.tar.bz2 volse-hubzilla-941c554031de5a7ccb9dd685bec36cead508d41c.zip |
You've got mail! (actually a post, mail is for another day)
Diffstat (limited to 'mod')
-rw-r--r-- | mod/post.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/post.php b/mod/post.php index bdb50ac48..3c852974e 100644 --- a/mod/post.php +++ b/mod/post.php @@ -79,7 +79,7 @@ function post_post(&$a) { $ret['success'] = true; $ret['pickup'] = array(); foreach($r as $rr) { - $ret['pickup'][] = array('notify' => $rr['outq_notify'],'message' => $rr['outq_msg']); + $ret['pickup'][] = array('notify' => json_decode($rr['outq_notify'],true),'message' => json_decode($rr['outq_msg'],true)); $x = q("delete from outq where outq_hash = '%s' limit 1", dbesc($rr['outq_hash']) |