From 5b0ecceba0a6f72a2b6bb3fca046e39b1d13ab8c Mon Sep 17 00:00:00 2001
From: Benoit Mortier <benoit.mortier@opensides.be>
Date: Wed, 30 May 2012 21:42:52 +0200
Subject: [PATCH] Fixes: #981 Improve the FusionDirectory API

---
 include/class_timezone.inc | 21 ++++++++++++++++-----
 1 file changed, 16 insertions(+), 5 deletions(-)

diff --git a/include/class_timezone.inc b/include/class_timezone.inc
index c41ad4071..2cc47d057 100644
--- a/include/class_timezone.inc
+++ b/include/class_timezone.inc
@@ -20,14 +20,21 @@
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
 */
 
-/*! \brief This class contains all the function needed to manage the
+/*!
+ * \file class_timezone.inc
+ * Source code for class timezone
+ */ 
+
+/*!
+ * \brief This class contains all the function needed to manage the
  * timezones
- * 
  */ 
 class timezone {
 
-  /* This function returns the offset for the default timezone. 
-   * $stamp is used to detect summer or winter time.
+  /*
+   * \brief This function returns the offset for the default timezone. 
+   *
+   * \param $stamp is used to detect summer or winter time.
    * In case of PHP5, the integrated timezone functions are used.
    */
   static public function get_default_timezone($stamp = NULL)
@@ -61,7 +68,11 @@ class timezone {
   }
 
 
-  /* Return zone informations */
+  /*
+   * \brief Get the time zone informations
+   *
+   * \return Time zone informations
+   */
   static public function _get_tz_zones()
   {
     return DateTimeZone::listIdentifiers();
-- 
GitLab