Minor fixes for the Fetch Server and Message for the classes to work.

This commit is contained in:
Roger Llopart Pla 2012-09-10 12:54:55 +02:00
parent c83a6e3b16
commit 812e4eb048
2 changed files with 4 additions and 4 deletions

View File

@ -18,7 +18,7 @@ namespace Fetch;
* @package Fetch
* @author Robert Hafner <tedivm@tedivm.com>
*/
class ImapMessage
class Message
{
/**
* This is the connection/mailbox class that the email came from.
@ -527,11 +527,11 @@ class ImapMessage
$parameters = array();
if(isset($structure->parameters))
foreach($structure->parameters as $parameter)
$parameters[$parameter->attribute] = $parameter->value;
$parameters[strtolower($parameter->attribute)] = $parameter->value;
if(isset($structure->dparameters))
foreach($structure->dparameters as $parameter)
$parameters[$parameter->attribute] = $parameter->value;
$parameters[strtolower($parameter->attribute)] = $parameter->value;
return $parameters;
}

View File

@ -308,7 +308,7 @@ class Server
return $messages;
}else{
false;
return array();
}
}