Bugfix minore

This commit is contained in:
Thomas Zilio 2017-09-20 10:33:22 +02:00
parent 47fd7c52af
commit 99564e957b
2 changed files with 3 additions and 3 deletions

View File

@ -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);

View File

@ -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);