From 8dd05ed030c0bab602730a622663710abd2d1971 Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Wed, 25 Aug 2010 12:12:04 +0200 Subject: [PATCH] Fix double quotes. --- kronolith/lib/Event.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kronolith/lib/Event.php b/kronolith/lib/Event.php index 765829e48..ba77e179c 100644 --- a/kronolith/lib/Event.php +++ b/kronolith/lib/Event.php @@ -2390,7 +2390,7 @@ abstract class Kronolith_Event return '' . ''; + ' id="' . $this->_formIDEncode($property) . '" size="4" maxlength="4" />'; case 'start[month]': $sel = $this->start->month; @@ -2431,7 +2431,7 @@ abstract class Kronolith_Event return '' . ''; + ' id="' . $this->_formIDEncode($property) . '" size="4" maxlength="4" />'; case 'end[month]': $sel = $this->end ? $this->end->month : $this->start->month; @@ -2476,7 +2476,7 @@ abstract class Kronolith_Event return '' . ''; + ' id="' . $property . '" size="4" maxlength="4" />'; case 'dur_hour': $dur = $this->getDuration(); @@ -2508,7 +2508,7 @@ abstract class Kronolith_Event return '' . ''; + ' id="' . $this->_formIDEncode($property) . '" size="4" maxlength="4" />'; case 'recur_end[month]': if ($this->end) { -- 2.11.0