Fix parziale #439
This commit is contained in:
parent
4f4ce043a4
commit
a630cab4b5
4
core.php
4
core.php
|
@ -77,12 +77,12 @@ if (!API::isAPIRequest()) {
|
|||
// Inizializzazione Whoops
|
||||
$whoops = new Whoops\Run();
|
||||
|
||||
if (App::debug() || isAjaxRequest()) {
|
||||
if (App::debug()) {
|
||||
$whoops->pushHandler(new Whoops\Handler\PrettyPageHandler());
|
||||
}
|
||||
|
||||
// Abilita la gestione degli errori nel caso la richiesta sia di tipo AJAX
|
||||
if (isAjaxRequest()) {
|
||||
if (Whoops\Util\Misc::isAjaxRequest()) {
|
||||
$whoops->pushHandler(new Whoops\Handler\JsonResponseHandler());
|
||||
}
|
||||
|
||||
|
|
|
@ -275,7 +275,7 @@ function slashes($string)
|
|||
*/
|
||||
function isAjaxRequest()
|
||||
{
|
||||
return \Whoops\Util\Misc::isAjaxRequest();
|
||||
return \Whoops\Util\Misc::isAjaxRequest() && filter('ajax') !== null;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -274,6 +274,6 @@ class Fattura extends Document
|
|||
]);
|
||||
$numero = Generator::generate($maschera, $ultimo, 1, Generator::dateToPattern($data));
|
||||
|
||||
return $numero_esterno;
|
||||
return $numero;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue