diff -r ca795b871158 -r e2766e538d0e www-thermferm/units.php --- a/www-thermferm/units.php Sun Jul 07 14:28:37 2019 +0200 +++ b/www-thermferm/units.php Mon Nov 04 13:19:27 2019 +0100 @@ -1,6 +1,6 @@ * @@ -238,7 +238,7 @@ if ($_POST['TempSetMax'] <= $_POST['TempSetMin']) return 4; - if (($_POST['TempSetMax'] < 25) || ($_POST['TempSetMax'] > 35)) + if (($_POST['TempSetMax'] < 25) || ($_POST['TempSetMax'] > 45)) return 5; if (($_POST['TempSetMin'] < -5) || ($_POST['TempSetMin'] > 15)) @@ -296,7 +296,7 @@ break; case 4: $error = 'Temperature Maximum cannot be smaller then Temperature Minimum'; break; - case 5: $error = 'Temperature Maximum must be between 25 and 35 °C'; + case 5: $error = 'Temperature Maximum must be between 25 and 45 °C'; break; case 6: $error = 'Temperature Minimum must be between -5 and 15 °C'; break;