Undefined variable in view_header. Need to see if we can find the
authorjangliss <jangliss@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sun, 6 Nov 2005 03:06:05 +0000 (03:06 +0000)
committerjangliss <jangliss@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sun, 6 Nov 2005 03:06:05 +0000 (03:06 +0000)
cause as to why there appears to be no headers in rare cases.

git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@10261 7612ce4b-ef26-0410-bec9-ea0150e637f0

ChangeLog
src/view_header.php

index 520c09f2db3d30b70d9cf05bdbcffb9fde828869..f557056391b082af118ee166f91e8443de45bed7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -470,6 +470,7 @@ Version 1.5.1 -- CVS
     plugins/bug_report/README file.
   - E_NOTICE and unlink error message if user hits delete multiple times
     before compose page has reloaded.
+  - Undefined variable in rare case in view_header.php
 
 
 Version 1.5.0 - 2 February 2004
index 5a0ddf25cb5eaf4ed93fb5d33c11d56e1f98a759..837edfdfef5195069d6fd043473209494c23783f 100644 (file)
@@ -26,6 +26,8 @@ require_once(SM_PATH . 'functions/url_parser.php');
 
 function parse_viewheader($imapConnection,$id, $passed_ent_id) {
 
+    $header_output = array();
+
     if (!$passed_ent_id) {
         $read=sqimap_run_command ($imapConnection, "FETCH $id BODY[HEADER]",
                               true, $a, $b, TRUE);
@@ -129,4 +131,4 @@ $mbx_response = sqimap_mailbox_select($imapConnection, $mailbox, false, false, t
 $header = parse_viewheader($imapConnection,$passed_id, $passed_ent_id);
 view_header($header, $mailbox, $color);
 
-?>
\ No newline at end of file
+?>