]> git.mxchange.org Git - friendica.git/blobdiff - mod/uexport.php
Merge pull request #5327 from tobiasd/20180706-issue4753
[friendica.git] / mod / uexport.php
index c6f76cfce5200004ac7e6541812e1b43c2e35348..c1b3dd1e4b169e7a6f5c9ca3227f2306b9fdce0e 100644 (file)
@@ -42,7 +42,7 @@ function uexport_content(App $a) {
         */
        $options = [
                ['uexport/account', L10n::t('Export account'), L10n::t('Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server.')],
-               ['uexport/backup', L10n::t('Export all'), L10n::t('Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)')],
+               ['uexport/backup', L10n::t('Export all'), L10n::t("Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account \x28photos are not exported\x29")],
        ];
        Addon::callHooks('uexport_options', $options);
 
@@ -141,6 +141,7 @@ 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())
        );