diff options
author | friendica <info@friendica.com> | 2014-03-04 19:57:54 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-03-04 19:57:54 -0800 |
commit | 267283748f676a278d180752c3af56486754e83e (patch) | |
tree | 837c293ec6ff722d8a7616266525acabfe83607e /include/items.php | |
parent | 4da73d7d841d9ed33ce83539d7faac5809cac6dc (diff) | |
download | volse-hubzilla-267283748f676a278d180752c3af56486754e83e.tar.gz volse-hubzilla-267283748f676a278d180752c3af56486754e83e.tar.bz2 volse-hubzilla-267283748f676a278d180752c3af56486754e83e.zip |
Red API: /api/red/item/new ; which is like /api/statuses/update except it uses Red semantics and returns success/failure indication.
Diffstat (limited to 'include/items.php')
-rwxr-xr-x | include/items.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/items.php b/include/items.php index 6ff984370..70e098415 100755 --- a/include/items.php +++ b/include/items.php @@ -1548,7 +1548,7 @@ function item_store($arr,$allow_exec = false) { $allow_exec = $d['allow_exec']; - $ret = array('result' => false, 'item_id' => 0); + $ret = array('success' => false, 'item_id' => 0); if(! $arr['uid']) { logger('item_store: no uid'); @@ -1933,7 +1933,7 @@ function item_store_update($arr,$allow_exec = false) { - $ret = array('result' => false, 'item_id' => 0); + $ret = array('success' => false, 'item_id' => 0); if(! intval($arr['uid'])) { logger('item_store_update: no uid'); $ret['message'] = 'no uid.'; |