Remove/replace killme() with *exit()

This commit is contained in:
Hypolite Petovan 2018-12-26 00:40:12 -05:00
parent df386800d3
commit 895b3abf32
75 changed files with 167 additions and 187 deletions

View file

@ -111,7 +111,7 @@ class System extends BaseObject
echo XML::fromArray($xmldata, $xml);
killme();
exit();
}
/**
@ -185,7 +185,7 @@ class System extends BaseObject
public static function jsonExit($x, $content_type = 'application/json') {
header("Content-type: $content_type");
echo json_encode($x);
killme();
exit();
}
/**