changed var name

This commit is contained in:
Marek Bachmann 2022-11-25 23:36:28 +01:00
parent 74bab60989
commit c4c1bd2908
1 changed files with 5 additions and 5 deletions

View File

@ -920,7 +920,7 @@ function photos_content(App $a)
*/ */
// init output var in case no number value could be retrieved. // init output var in case no number value could be retrieved.
$maximagesize_Mbytes = 0; $maximagesize_Mbytes = 0;
$dom_limitedby = ''; $sizelimitedby = '';
{ {
// Get the relevant size limits for uploads. Abbreviated var names: MaxImageSize -> mis; upload_max_filesize -> umf // Get the relevant size limits for uploads. Abbreviated var names: MaxImageSize -> mis; upload_max_filesize -> umf
$mis_bytes = DI::config()->get('system', 'maximagesize'); $mis_bytes = DI::config()->get('system', 'maximagesize');
@ -943,7 +943,7 @@ function photos_content(App $a)
// When PHP is configured with upload_max_filesize less than maximagesize provide this lower limit. // When PHP is configured with upload_max_filesize less than maximagesize provide this lower limit.
if ($umf_bytes < $mis_bytes) { if ($umf_bytes < $mis_bytes) {
$maximagesize_Mbytes = ($umf_bytes / (10 ** 6)); $maximagesize_Mbytes = ($umf_bytes / (10 ** 6));
$dom_limitedby = 'PHP.ini'; $sizelimitedby = 'PHP.ini';
} else { } else {
$maximagesize_Mbytes = ($mis_bytes / (10 ** 6)); $maximagesize_Mbytes = ($mis_bytes / (10 ** 6));
@ -952,9 +952,9 @@ function photos_content(App $a)
} }
$usage_message = DI::l10n()->t('The maximum accepted image size is %.3g MB', $maximagesize_Mbytes); $usage_message = DI::l10n()->t('The maximum accepted image size is %.3g MB', $maximagesize_Mbytes);
// Do we want to bother the end user with this information? If yes uncomment // Do we want to bother the end user with this information? If yes uncomment
// if (strlen($dom_limitedby) > 0) { //if (strlen($sizelimitedby) > 0) {
// $usage_message .= ' ('. $dom_limitedby . ')'; // $usage_message .= ' ('. $sizelimitedby . ')';
// } //}
$tpl = Renderer::getMarkupTemplate('photos_upload.tpl'); $tpl = Renderer::getMarkupTemplate('photos_upload.tpl');