Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'apps/calendar/ajax/deletecalendar.php')
-rw-r--r--apps/calendar/ajax/deletecalendar.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/calendar/ajax/deletecalendar.php b/apps/calendar/ajax/deletecalendar.php
index 71129f2c040..30607b92e6f 100644
--- a/apps/calendar/ajax/deletecalendar.php
+++ b/apps/calendar/ajax/deletecalendar.php
@@ -16,13 +16,13 @@ if(!OC_USER::isLoggedIn()) {
$cal = $_POST["calendarid"];
$calendar = OC_Calendar_Calendar::findCalendar($cal);
if($calendar["userid"] != OC_User::getUser()){
- echo json_encode(array('status'=>'error','error'=>'permission_denied'));
+ OC_JSON::error(array('error'=>'permission_denied'));
exit;
}
$del = OC_Calendar_Calendar::deleteCalendar($cal);
if($del == true){
- echo json_encode(array('status' => 'success'));
+ OC_JSON::success();
}else{
- echo json_encode(array('status'=>'error', 'error'=>'dberror'));
+ OC_JSON::error(array('error'=>'dberror'));
}
?>