X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fuexport.php;h=c1b3dd1e4b169e7a6f5c9ca3227f2306b9fdce0e;hb=54707dd4c815b6bf9aec5d8cb9231a1646aaa65a;hp=c6f76cfce5200004ac7e6541812e1b43c2e35348;hpb=407b2397cbb25a1de9252f16279dfdd786ffade1;p=friendica.git diff --git a/mod/uexport.php b/mod/uexport.php index c6f76cfce5..c1b3dd1e4b 100644 --- a/mod/uexport.php +++ b/mod/uexport.php @@ -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()) );