diff options
author | Friendika <info@friendika.com> | 2011-03-22 03:25:43 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-03-22 03:25:43 -0700 |
commit | f20464112f274d720649c2f92480cc235df4db19 (patch) | |
tree | f926afdba7965bf7bab7a4e1991bc51318ca66bb /mod/uexport.php | |
parent | 83a36cbd13a7c59b30164424579592a457cec7f5 (diff) | |
download | volse-hubzilla-f20464112f274d720649c2f92480cc235df4db19.tar.gz volse-hubzilla-f20464112f274d720649c2f92480cc235df4db19.tar.bz2 volse-hubzilla-f20464112f274d720649c2f92480cc235df4db19.zip |
remove items from export - too much memory consumed, will have to stream items,photos
Diffstat (limited to 'mod/uexport.php')
-rw-r--r-- | mod/uexport.php | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/mod/uexport.php b/mod/uexport.php index d8141534a..d8f931593 100644 --- a/mod/uexport.php +++ b/mod/uexport.php @@ -36,19 +36,7 @@ function uexport_init(&$a) { $profile[][$k] = $v; } - $item = array(); - $r = q("SELECT * FROM `item` WHERE `uid` = %d ", - local_user() - ); - if(count($r)) { - foreach($r as $rr) - foreach($rr as $k => $v) - $item[][$k] = $v; - } - - - - $output = array('user' => $user, 'contact' => $contact, 'profile' => $profile, 'item' => $item ); + $output = array('user' => $user, 'contact' => $contact, 'profile' => $profile ); header("Content-type: text/json"); echo str_replace('\\/','/',json_encode($output)); |