German localisation updates, patch by ray.
[lhc/web/wiklou.git] / includes / DateFormatter.php
index 643da7b..4027bec 100644 (file)
@@ -1,11 +1,7 @@
 <?php
-/**
- * Date formatter, recognises dates in plain text and formats them accoding to user preferences.
- *
- * @addtogroup Parser
- */
 
 /**
+ * Date formatter, recognises dates in plain text and formats them accoding to user preferences.
  * @todo preferences, OutputPage
  * @addtogroup Parser
  */
@@ -16,7 +12,7 @@ class DateFormatter
 
        var $regexes, $pDays, $pMonths, $pYears;
        var $rules, $xMonths, $preferences;
-       
+
        const ALL = -1;
        const NONE = 0;
        const MDY = 1;
@@ -285,5 +281,3 @@ class DateFormatter
                return $text;
        }
 }
-
-?>