forked from GNUsocial/gnu-social
error handler in xmppdaemon
darcs-hash:20080716054932-84dde-4c7c65cb1b5fb1d3b1b15409e092b40285d6cfd0.gz
This commit is contained in:
parent
9e5a8b7e1f
commit
e1711bb0cf
@ -18,6 +18,13 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
function xmppdaemon_error_handler($errno, $errstr, $errfile, $errline, $errcontext) {
|
||||
print "Error $errno in $errfile[$errline]: $errstr\n";
|
||||
die();
|
||||
}
|
||||
|
||||
set_error_handler('xmppdaemon_error_handler');
|
||||
|
||||
# Abort if called from a web server
|
||||
if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) {
|
||||
print "This script must be run from the command line\n";
|
||||
|
Loading…
Reference in New Issue
Block a user