diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-08-26 22:58:53 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-08-26 22:58:53 -0700 |
commit | 0b5bad4aa7968d22e1e9cf92a42d86579bd811ec (patch) | |
tree | 4df53c6b2f5b4b573f67bd7e6699a1c3194b6957 /include | |
parent | 0d2c90cc2e4df2b5a7dc83c735ea60bd77c6946e (diff) | |
download | volse-hubzilla-0b5bad4aa7968d22e1e9cf92a42d86579bd811ec.tar.gz volse-hubzilla-0b5bad4aa7968d22e1e9cf92a42d86579bd811ec.tar.bz2 volse-hubzilla-0b5bad4aa7968d22e1e9cf92a42d86579bd811ec.zip |
use extended export format for items in api photo_detail
Diffstat (limited to 'include')
-rw-r--r-- | include/api.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/api.php b/include/api.php index 5e6cba38d..027779558 100644 --- a/include/api.php +++ b/include/api.php @@ -660,7 +660,7 @@ require_once('include/items.php'); if($ii) { $ret['item'] = array(); foreach($ii as $iii) - $ret['item'][] = encode_item($iii); + $ret['item'][] = encode_item($iii,true); } } } |