| Issue 51: | Error in parse_header_array function | |
| 1 person starred this issue and may be notified of changes. | Back to list |
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
Status:
Fixed
|