* @return object Message object
* @todo define argument and return types
*/
- static function parseStructure($read, &$i, $sub_msg = '') {
+ function parseStructure($read, &$i, $sub_msg = '') {
$msg = Message::parseBodyStructure($read, $i, $sub_msg);
if($msg) $msg->setEntIds($msg,false,0);
return $msg;
* @todo document me
* @since 1.4.0 (code was part of parseStructure() in 1.3.x)
*/
- static function parseBodyStructure($read, &$i, $sub_msg = '') {
+ function parseBodyStructure($read, &$i, $sub_msg = '') {
$arg_no = 0;
$arg_a = array();
if ($sub_msg) {
$msg->header->type0 = 'multipart';
$msg->type0 = 'multipart';
while ($read{$i} == '(') {
- $msg->addEntity(Message::parseBodyStructure($read, $i, $msg));
+ $msg->addEntity($msg->parseBodyStructure($read, $i, $msg));
}
}
break;
while (($i < $cnt) && ($read{$i} != '(')) {
++$i;
}
- $msg->addEntity(Message::parseBodyStructure($read, $i,$msg));
+ $msg->addEntity($msg->parseBodyStructure($read, $i,$msg));
}
break;
case 8: