E_ALL is a moving target
[squirrelmail.git] / plugins / info / functions.php
index 5357bf6ca882e0f17f0b7338aa48373d991cc06e..db36cfc781d05a3181d3717fe58522b92c362692 100644 (file)
@@ -1,4 +1,5 @@
 <?php
+
 /**
  * functions for info plugin
  *
@@ -8,9 +9,9 @@
  * The third prints the results of the IMAP command
  * to options.php.
  *
- * @copyright (c) 1999-2005 The SquirrelMail Project Team
+ * @author Jason Munro <jason at stdbev.com>
+ * @copyright 1999-2012 The SquirrelMail Project Team
  * @license http://opensource.org/licenses/gpl-license.php GNU Public License
- * @author Jason Munro jason@stdbev.com
  * @version $Id$
  * @package plugins
  * @subpackage info
@@ -49,7 +50,7 @@ function imap_test($imap_stream, $string) {
  * @access private
  */
 function print_response($response) {
-    foreach($response as $index=>$value) {
+    foreach($response as $value) {
         if (is_array($value)) {
             print_response($value);
         }
@@ -58,5 +59,3 @@ function print_response($response) {
         }
     }
 }
-
-?>
\ No newline at end of file