Added subfoldering from an idea/patch by Thomas Pohl xraven at users.sourceforge...
[squirrelmail.git] / functions / decode / iso8859-15.php
index 8963b7c325e12c27dede84638ce1cbd84f48ac09..af83a572dc6fe7b6922a8faa7d3e177c1bf45abf 100644 (file)
@@ -1,9 +1,9 @@
 <?php
-/*
+/**
  * decode/iso8859-15.php
  * $Id$
  *
- * Copyright (c) 1999-2003 The SquirrelMail Project Team
+ * Copyright (c) 2003 The SquirrelMail Project Team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * This file contains iso-8859-15 decoding function that is needed to read
  *     Unicode Standard, and to make copies of this file in any form for
  *     internal or external distribution as long as this notice remains
  *     attached.
- *
+ * @package squirrelmail
+ * @subpackage decode
+ */
+
+/**
+ * Decode iso8859-15 encoded string
+ * @param string $string Encoded string
+ * @return string $string Decoded string
  */
 function charset_decode_iso8859_15 ($string) {
     global $default_charset;
@@ -153,4 +160,4 @@ function charset_decode_iso8859_15 ($string) {
     return $string;
 }
 
-?>
\ No newline at end of file
+?>