fixed a forgotten debug output

This commit is contained in:
Marek Bachmann 2022-11-26 21:44:41 +01:00
parent 907deed523
commit f4d49e561c
1 changed files with 1 additions and 1 deletions

View File

@ -930,7 +930,7 @@ function photos_content(App $a)
($maximagesize_Mbytes = ($umf_bytes / (10 ** 6))) : ($maximagesize_Mbytes = ($mis_bytes / (10 ** 6)));
}
}
$usage_message = DI::l10n()->t('The maximum accepted image size is %.3g MB', Strings::getBytesFromShorthand(get_cfg_var('upload_max_filesize')));
$usage_message = DI::l10n()->t('The maximum accepted image size is %.3g MB', $maximagesize_Mbytes);
$tpl = Renderer::getMarkupTemplate('photos_upload.tpl');