My favorites | Sign in
Project Home Downloads Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions
Issue 51: Error in parse_header_array function
1 person starred this issue and may be notified of changes. Back to list
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

Powered by Google Project Hosting