Bugfix minore
This commit is contained in:
parent
47fd7c52af
commit
99564e957b
2
core.php
2
core.php
|
@ -61,7 +61,7 @@ if (!API::isAPIRequest()) {
|
|||
// Impostazioni di debug
|
||||
if (!empty($debug)) {
|
||||
// Ignoramento degli avvertimenti e delle informazioni relative alla deprecazione di componenti
|
||||
error_reporting(E_ALL & ~E_NOTICE & ~E_USER_DEPRECATED);
|
||||
error_reporting(E_ALL & ~E_WARNING & ~E_NOTICE & ~E_USER_DEPRECATED);
|
||||
|
||||
// File di log ordinato in base alla data
|
||||
$handlers[] = new RotatingFileHandler(__DIR__.'/logs/error.log', 0, Monolog\Logger::ERROR);
|
||||
|
|
|
@ -130,9 +130,9 @@ class Modules
|
|||
{
|
||||
$array = self::getAdditionals($module);
|
||||
if (!empty($type) && isset($array[$type])) {
|
||||
$result = $array[$type];
|
||||
$result = (array) $array[$type];
|
||||
} else {
|
||||
$result = array_merge($array['WHR'], $array['HVN']);
|
||||
$result = array_merge((array) $array['WHR'], (array) $array['HVN']);
|
||||
}
|
||||
|
||||
$result = implode(' AND ', $result);
|
||||
|
|
Loading…
Reference in New Issue