mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-06-07 18:04:26 +02:00
Replace killme() by exit()
This commit is contained in:
parent
9845edb8d9
commit
aa5fbb4994
7 changed files with 19 additions and 19 deletions
|
@ -338,19 +338,19 @@ function windowsphonepush_content(App $a)
|
|||
switch ($path2) {
|
||||
case "show_settings":
|
||||
windowsphonepush_showsettings($a);
|
||||
killme();
|
||||
exit();
|
||||
break;
|
||||
case "update_settings":
|
||||
$ret = windowsphonepush_updatesettings($a);
|
||||
header("Content-Type: application/json; charset=utf-8");
|
||||
echo json_encode(['status' => $ret]);
|
||||
killme();
|
||||
exit();
|
||||
break;
|
||||
case "update_counterunseen":
|
||||
$ret = windowsphonepush_updatecounterunseen();
|
||||
header("Content-Type: application/json; charset=utf-8");
|
||||
echo json_encode(['status' => $ret]);
|
||||
killme();
|
||||
exit();
|
||||
break;
|
||||
default:
|
||||
echo "Fehler";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue