UPDATE: HLEB v1.5.91

This commit is contained in:
Evg 2022-01-17 09:24:49 +03:00
parent b44a8c2a5b
commit b384bd18ee
3 changed files with 3 additions and 3 deletions

View file

@ -642,7 +642,7 @@ final class Request extends BaseSingleton
//Returns the result of clearing values from an array by name.
// Возвращает результат получения значений из массива по названию.
private static function checkValueInArray($value, array $list) {
return $value != null ? ((true === array_key_exists($value, $list) && strlen($list[$value]) > 0) ? $list[$value] : null) : $list;
return $value != null ? ((true === array_key_exists($value, $list) && $list[$value] !== '') ? $list[$value] : null) : $list;
}
//Returns the result of clearing values in a string.

View file

@ -1,6 +1,6 @@
<?php
define('HLEB_PROJECT_FULL_VERSION', '1.5.90');
define('HLEB_PROJECT_FULL_VERSION', '1.5.91');
require HLEB_PROJECT_DIRECTORY . '/Scheme/App/Controllers/MainController.php';

View file

@ -6,7 +6,7 @@
// All calls are sent to this file.
// Все вызовы направляются в этот файл.
define('HLEB_START', microtime(true));
define('HLEB_FRAME_VERSION', "1.5.90");
define('HLEB_FRAME_VERSION', "1.5.91");
define('HLEB_PUBLIC_DIR', __DIR__);
// General headers.