Laith- / lightopenid

Automatically exported from code.google.com/p/lightopenid
0 stars 0 forks source link

Error in parse_header_array function #51

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
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) {

Original issue reported on code.google.com by metlus...@gmail.com on 17 Oct 2011 at 11:17

GoogleCodeExporter commented 9 years ago
Um, I don't know what to say, that's a pretty stupid mistake.

Fixed and pushed, thanks for reporting.

Original comment by mewp...@gmail.com on 17 Oct 2011 at 1:09