]> git.mxchange.org Git - friendica.git/blobdiff - mod/uexport.php
Cleanup for #3010 - added spaces, thanks to @annando .
[friendica.git] / mod / uexport.php
index 0aa9f68b26be48a202a5b35b0141b742ea703625..e0a0b071f6e3636663c6f1d2e89634191e8392fe 100644 (file)
@@ -44,7 +44,7 @@ function uexport_content(&$a){
 function _uexport_multirow($query) {
        $result = array();
        $r = q($query);
-//     if(dbm::is_result($r)) {
+//     if (dbm::is_result($r)) {
        if ($r){
                foreach($r as $rr){
             $p = array();
@@ -130,7 +130,7 @@ function uexport_all(&$a) {
        $r = q("SELECT count(*) as `total` FROM `item` WHERE `uid` = %d ",
                intval(local_user())
        );
-       if(dbm::is_result($r))
+       if (dbm::is_result($r))
                $total = $r[0]['total'];
 
        // chunk the output to avoid exhausting memory
@@ -142,7 +142,7 @@ function uexport_all(&$a) {
                        intval($x),
                        intval(500)
                );
-               /*if(dbm::is_result($r)) {
+               /*if (dbm::is_result($r)) {
                        foreach($r as $rr)
                                foreach($rr as $k => $v)
                                        $item[][$k] = $v;