Be a bit more verbose in the error message about PEAR not being included:
[squirrelmail.git] / functions / decode / cp1257.php
index e9b9e16dca867ef3e6c929b444939530e1362f30..fce56b207c93772f3637d361437c57df56c6e1b1 100644 (file)
@@ -1,9 +1,8 @@
 <?php
-/*
+/**
  * decode/cp1257.php
- * $Id$
  *
- * Copyright (c) 1999-2003 The SquirrelMail Project Team
+ * Copyright (c) 2003-2004 The SquirrelMail Project Team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * This file contains cp1257 decoding function that is needed to read
  *  Date:          04/15/98
  *  Contact:       cpxlate@microsoft.com
  *
+ * @version $Id$
+ * @package squirrelmail
+ * @subpackage decode
  */
 
+/**
+ * Decode cp1257-encoded string
+ * @param string $string Encoded string
+ * @return string $string Decoded string
+ */
 function charset_decode_cp1257 ($string) {
     global $default_charset;
 
@@ -156,4 +163,4 @@ function charset_decode_cp1257 ($string) {
     return $string;
 }
 
-?>
\ No newline at end of file
+?>