]> source.dussan.org Git - nextcloud-server.git/commitdiff
Corrected typos.
authorThomas Tanghus <thomas@tanghus.net>
Wed, 6 Jun 2012 09:46:11 +0000 (11:46 +0200)
committerThomas Tanghus <thomas@tanghus.net>
Wed, 6 Jun 2012 09:50:49 +0000 (11:50 +0200)
apps/calendar/ajax/share/share.php

index 3ce2bf1e21756a142d5e07c6bcb9b795577a2cdf..629a7b6b79fb217d7c9b6ca1224303162ba4e1d3 100644 (file)
@@ -13,7 +13,7 @@ switch($idtype){
        case 'event':
                break;
        default:
-               OCP\JSON::error(array('message'=>'unexspected parameter'));
+               OCP\JSON::error(array('message'=>'unexpected parameter'));
                exit;
 }
 if($idtype == 'calendar' && !OC_Calendar_App::getCalendar($id)){
@@ -32,7 +32,7 @@ switch($sharetype){
        case 'public':
                break;
        default:
-               OCP\JSON::error(array('message'=>'unexspected parameter'));
+               OCP\JSON::error(array('message'=>'unexpected parameter'));
                exit;
 }
 if($sharetype == 'user' && !OCP\User::userExists($sharewith)){
@@ -44,7 +44,7 @@ if($sharetype == 'group' && !OC_Group::groupExists($sharewith)){
        exit;
 }
 if($sharetype == 'user' && OCP\USER::getUser() == $sharewith){
-       OCP\JSON::error(array('meesage'=>'you can not share with yourself'));
+       OCP\JSON::error(array('message'=>'you can not share with yourself'));
 }
 $success = OC_Calendar_Share::share(OCP\USER::getUser(), $sharewith, $sharetype, $id, (($idtype=='calendar') ? OC_Calendar_Share::CALENDAR : OC_Calendar_Share::EVENT));
 if($success){