Issue 51: Error in parse_header_array function
Status:  Fixed
Owner: ----
Closed:  Oct 2011
Reported by metlus...@gmail.com, Oct 17, 2011
protected function parse_header_array($array, $update_claimed_id)
    {
        $headers = array();
        foreach($headers as $header) {

must be: 

protected function parse_header_array($array, $update_claimed_id)
    {
        $headers = array();
        foreach($array as $header) {

Oct 17, 2011
Project Member #1 mewp...@gmail.com
Um, I don't know what to say, that's a pretty stupid mistake.

Fixed and pushed, thanks for reporting.
Status: Fixed