From f6f49342b0d7b23b8835b1c8e0863bf2a9ac437e Mon Sep 17 00:00:00 2001
From: Laurent Destailleur <eldy@users.sourceforge.net>
Date: Mon, 8 Aug 2011 15:47:16 +0000
Subject: [PATCH] Fix: Missing constructor

---
 htdocs/comm/action/class/ical.class.php | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/htdocs/comm/action/class/ical.class.php b/htdocs/comm/action/class/ical.class.php
index 12a55b11c45..ca0656c3281 100644
--- a/htdocs/comm/action/class/ical.class.php
+++ b/htdocs/comm/action/class/ical.class.php
@@ -21,7 +21,7 @@
  *       \file       htdocs/comm/action/class/ical.class.php
  *       \ingroup    commercial
  *       \brief      File of class to parse ical calendars
- *       \version    $Id: ical.class.php,v 1.6 2011/08/03 00:46:20 eldy Exp $
+ *       \version    $Id: ical.class.php,v 1.7 2011/08/08 15:47:16 eldy Exp $
  */
 class ical
 {
@@ -31,7 +31,15 @@ class ical
     var $todo_count; // Number of TODOs
     var $last_key; //Help variable save last key (multiline string)
 
-    /**
+
+	/**
+	 * Constructor
+	 */
+	public function ical()
+	{
+	}
+
+	/**
      * Read text file, icalender text file
      *
      * @param string $file
-- 
GitLab