removing trailing ?> from function scripts
[squirrelmail.git] / functions / decode / iso_8859_1.php
index 08faf1c582d9b5afe0a91a8989a01b18a349cfaa..f75c29567e11e806782acd3d3c007c9a0fbcec5d 100644 (file)
@@ -1,13 +1,13 @@
 <?php
+
 /**
  * decode/iso8859-1.php
  *
- * Copyright (c) 2003-2004 The SquirrelMail Project Team
- * Licensed under the GNU GPL. For full terms see the file COPYING.
- *
  * This file contains iso-8859-1 decoding function that is needed to read
  * iso-8859-1 encoded mails in non-iso-8859-1 locale.
  *
+ * @copyright &copy; 2003-2006 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  * @version $Id$
  * @package squirrelmail
  * @subpackage decode
@@ -31,5 +31,3 @@ function charset_decode_iso_8859_1 ($string) {
     $string = preg_replace("/([\241-\377])/e","'&#' . ord('\\1') . ';'",$string);
     return $string;
 }
-
-?>
\ No newline at end of file