Remove/replace killme() with *exit()

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

View file

@ -28,7 +28,7 @@ function viewsrc_content(App $a)
if (DBA::isResult($item)) {
if ($a->isAjax()) {
echo str_replace("\n", '<br />', $item['body']);
killme();
exit();
} else {
$o .= str_replace("\n", '<br />', $item['body']);
}