Line 257 in function update_xml_parser->end() modules/update/update.fetch.inc
we have :

$this->current_object[strtolower($this->current_tag)] = trim($this->current_object[strtolower($this->current_tag)]);

"$this->current_tag" could be null so that line should changed to :

if (!empty($this->current_tag)) {
  $this->current_object[strtolower($this->current_tag)] = trim($this->current_object[strtolower($this->current_tag)]);
}

Thanks

Comments

dww’s picture