On 05/26/2014 10:31 AM, Reindl Harald wrote:
hopefully console() and $headers exists at that level :-)
Oops, it looks that we were looking at different lines of code.
// regular part
$struct->ctype_primary = strtolower($part[0]);
$struct->ctype_secondary = strtolower($part[1]);
if(is_array($part[0]) || is_array($part[1]))
{
console($_SESSION['username'].":$folder:$uid");
console($headers);
}
Here, none of used variables exist. You need to change this to
console($_SESSION['username'].":".$this->folder.":".$this->msg_uid); console($part);