forked from GNUsocial/gnu-social
ErrorAction to autodiscoverable file.
This commit is contained in:
parent
818fb05cfe
commit
bc0a903bd4
@ -1457,6 +1457,8 @@ class Action extends HTMLOutputter // lawsuit
|
|||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
common_log(LOG_ERR, 'Handled serverError ('._ve($code).') but cannot output into desired format ('._ve($this->format).'): '._ve($msg));
|
common_log(LOG_ERR, 'Handled serverError ('._ve($code).') but cannot output into desired format ('._ve($this->format).'): '._ve($msg));
|
||||||
|
$action = new ServerErrorAction($msg, $code);
|
||||||
|
$action->execute();
|
||||||
}
|
}
|
||||||
|
|
||||||
exit((int)$code);
|
exit((int)$code);
|
||||||
@ -1513,6 +1515,8 @@ class Action extends HTMLOutputter // lawsuit
|
|||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
common_log(LOG_ERR, 'Handled clientError ('._ve($code).') but cannot output into desired format ('._ve($this->format).'): '._ve($msg));
|
common_log(LOG_ERR, 'Handled clientError ('._ve($code).') but cannot output into desired format ('._ve($this->format).'): '._ve($msg));
|
||||||
|
$action = new ClientErrorAction($msg, $code);
|
||||||
|
$action->execute();
|
||||||
}
|
}
|
||||||
exit((int)$code);
|
exit((int)$code);
|
||||||
}
|
}
|
||||||
|
@ -28,11 +28,7 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (!defined('STATUSNET') && !defined('LACONICA')) {
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
require_once INSTALLDIR . '/lib/error.php';
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class for displaying HTTP client errors
|
* Class for displaying HTTP client errors
|
||||||
|
@ -29,11 +29,7 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (!defined('STATUSNET') && !defined('LACONICA')) {
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
require_once INSTALLDIR.'/lib/error.php';
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class for displaying HTTP server errors
|
* Class for displaying HTTP server errors
|
||||||
|
Loading…
Reference in New Issue
Block a user