summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/calendar/js/calendar.js5
-rw-r--r--apps/calendar/lib/object.php17
-rw-r--r--apps/gallery/css/styles.css1
3 files changed, 6 insertions, 17 deletions
diff --git a/apps/calendar/js/calendar.js b/apps/calendar/js/calendar.js
index 005e359f8eb..c3644b53704 100644
--- a/apps/calendar/js/calendar.js
+++ b/apps/calendar/js/calendar.js
@@ -7,7 +7,6 @@
*/
Calendar={
- space:' ',
UI:{
startEventDialog:function(){
$('.tipsy').remove();
@@ -271,9 +270,9 @@ Calendar={
var url;
if (calendarid == 'new'){
- url = "ajax/createcalendar.php";
+ url = OC.filePath('calendar', 'ajax', 'createcalendar.php');
}else{
- url = "ajax/updatecalendar.php";
+ url = OC.filePath('calendar', 'ajax', 'updatecalendar.php');
}
$.post(url, { id: calendarid, name: displayname, active: active, description: description, color: calendarcolor },
function(data){
diff --git a/apps/calendar/lib/object.php b/apps/calendar/lib/object.php
index 1e834241f63..1c145003511 100644
--- a/apps/calendar/lib/object.php
+++ b/apps/calendar/lib/object.php
@@ -460,7 +460,7 @@ class OC_Calendar_Object{
{
$title = $request["title"];
$location = $request["location"];
- $categories = isset($request["categories"]) ? $request["categories"] : null;
+ $categories = isset($request["categories"]) ? $request["categories"] : array();
$allday = isset($request["allday"]);
$from = $request["from"];
$to = $request["to"];
@@ -511,20 +511,9 @@ class OC_Calendar_Object{
}
unset($vevent->DURATION);
-
$vevent->setString('LOCATION', $location);
-
- if($description != ""){
- $vevent->DESCRIPTION = $description;
- }else{
- unset($vevent->DESCRIPTION);
- }
-
- if(!empty($categories)){
- $vevent->CATEGORIES = join(',', $categories);
- }else{
- unset($vevent->CATEGORIES);
- }
+ $vevent->setString('DESCRIPTION', $description);
+ $vevent->setString('CATEGORIES', join(',', $categories));
/*if($repeat == "true"){
$vevent->RRULE = $repeat;
diff --git a/apps/gallery/css/styles.css b/apps/gallery/css/styles.css
index 070effe3a92..e23d822fec7 100644
--- a/apps/gallery/css/styles.css
+++ b/apps/gallery/css/styles.css
@@ -13,6 +13,7 @@ div#gallery_album_box {
border: 0;
display: inline-block;
margin: 5pt;
+ vertical-align: top;
}
.leftcontent div#gallery_album_box {
margin: 5px;