X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fuexport.php;h=f0d91eeab029f94b0e5609760b716b7b19d97c4d;hb=b42760b0e6b243a9ab6306a1f1440e1a2effb74e;hp=29ea19c20e6ce07087646693a7cd7936ee1bde61;hpb=a5952e5425ee623253b2c91daa873ff6cc63bd39;p=friendica.git diff --git a/mod/uexport.php b/mod/uexport.php index 29ea19c20e..f0d91eeab0 100644 --- a/mod/uexport.php +++ b/mod/uexport.php @@ -1,9 +1,13 @@ System::baseUrl(), - '$title' => t('Export personal data'), + '$title' => L10n::t('Export personal data'), '$options' => $options ]); } @@ -54,7 +58,7 @@ function uexport_content(App $a) { function _uexport_multirow($query) { $result = []; $r = q($query); - if (DBM::is_result($r)) { + if (DBA::isResult($r)) { foreach ($r as $rr) { $p = []; foreach ($rr as $k => $v) { @@ -69,7 +73,7 @@ function _uexport_multirow($query) { function _uexport_row($query) { $result = []; $r = q($query); - if (DBM::is_result($r)) { + if (DBA::isResult($r)) { foreach ($r as $rr) { foreach ($rr as $k => $v) { $result[$k] = $v; @@ -138,10 +142,11 @@ function uexport_all(App $a) { uexport_account($a); echo "\n"; + $total = 0; $r = q("SELECT count(*) as `total` FROM `item` WHERE `uid` = %d ", intval(local_user()) ); - if (DBM::is_result($r)) { + if (DBA::isResult($r)) { $total = $r[0]['total']; } // chunk the output to avoid exhausting memory