Fix per php8.1
This commit is contained in:
parent
5d55ad191d
commit
1bae45821a
|
@ -112,7 +112,7 @@ if (filter('action') == 'do_update') {
|
|||
exit;
|
||||
} elseif (Update::isUpdateAvailable()) {
|
||||
// Controllo se l'aggiornamento è in esecuzione
|
||||
if (Update::isUpdateLocked() && filter('force') === null) {
|
||||
if (Update::isUpdateLocked() && !(isset($_GET['force']))) {
|
||||
$pageTitle = tr('Aggiornamento in corso!');
|
||||
|
||||
include_once App::filepath('include|custom|', 'top.php');
|
||||
|
|
|
@ -99,7 +99,7 @@ if (filter('op') == 'restore') {
|
|||
}
|
||||
|
||||
$number = filter('number');
|
||||
if ($number === null) {
|
||||
if (empty($number)) {
|
||||
$path = $_FILES['blob']['tmp_name'];
|
||||
} else {
|
||||
$number != '' ? $number : 0;
|
||||
|
|
Loading…
Reference in New Issue