From 3cdbfd36464d4f1ba1090be3e11321a088126215 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Thu, 16 May 2019 12:50:16 +0200 Subject: [PATCH] minor fix in php requirements Former-commit-id: bc268f18f8d46b8db6b1b28b3df5011bc56823d0 --- .../godmode/update_manager/update_manager.online.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/godmode/update_manager/update_manager.online.php b/pandora_console/godmode/update_manager/update_manager.online.php index 9e35924432..f74c7431cf 100644 --- a/pandora_console/godmode/update_manager/update_manager.online.php +++ b/pandora_console/godmode/update_manager/update_manager.online.php @@ -53,8 +53,8 @@ $post_max_size_min = '800M'; $upload_max_filesize_min = '800M'; $PHPmemory_limit_min = config_return_in_bytes($memory_limit_min); -$PHPpost_max_size_min = config_return_in_bytes($upload_max_filesize_min); -$PHPupload_max_filesize_min = config_return_in_bytes($post_max_size); +$PHPpost_max_size_min = config_return_in_bytes($post_max_size); +$PHPupload_max_filesize_min = config_return_in_bytes($upload_max_filesize_min); $php_settings_fine = 0; $PHP_SETTINGS_REQUIRED = 3;