]> git.mxchange.org Git - friendica.git/commitdiff
uexport: fix full export
authorFabrixxm <fabrix.xm@gmail.com>
Fri, 28 Jun 2013 07:16:25 +0000 (03:16 -0400)
committerFabrixxm <fabrix.xm@gmail.com>
Fri, 28 Jun 2013 07:16:25 +0000 (03:16 -0400)
- add new line after each valid json line
- export table row as single json object

mod/uexport.php

index 85a3fef5b6f3c05c5e4b3d251a683c78b50f26fe..bad924d8e89ea3136e6e7521c90ecdcf44cd6a8a 100644 (file)
@@ -168,6 +168,7 @@ function uexport_account($a){
 function uexport_all(&$a) {
     
     uexport_account($a);
+       echo "\n";
 
        $r = q("SELECT count(*) as `total` FROM `item` WHERE `uid` = %d ",
                intval(local_user())
@@ -184,14 +185,14 @@ function uexport_all(&$a) {
                        intval($x),
                        intval(500)
                );
-               if(count($r)) {
+               /*if(count($r)) {
                        foreach($r as $rr)
                                foreach($rr as $k => $v)
                                        $item[][$k] = $v;
-               }
+               }*/
 
-               $output = array('item' => $item);
-               echo json_encode($output);
+               $output = array('item' => $r);
+               echo json_encode($output)."\n";
        }
 
 }
\ No newline at end of file