PHP Classes

Bug Report

Recommend this page to a friend!

      PHP Forms Class with HTML Generator and JavaScript Validation  >  PHP Forms Class with HTML Generator and JavaScript Validation package blog  >  How to Show Google Ma...  >  All threads  >  Bug Report  >  (Un) Subscribe thread alerts  
Subject:Bug Report
Summary:Wrong variable name
Messages:2
Author:Matías montes
Date:2006-10-22 18:57:04
Update:2006-10-22 19:33:32
 

  1. Bug Report   Reply   Report abuse  
Picture of Matías montes Matías montes - 2006-10-22 18:57:04
File: forms.php

Line 3868: $form is a null reference
Replace
$head.=$this->inputs[$input]["object"]->ClassPageHead($form);
by
$head.=$this->inputs[$input]["object"]->ClassPageHead($this);

Line 3871: Same issue
Replace
$head.=$this->inputs[$input]["object"]->PageHead($form);
by
$head.=$this->inputs[$input]["object"]->PageHead($this);

  2. Re: Bug Report   Reply   Report abuse  
Picture of Manuel Lemos Manuel Lemos - 2006-10-22 19:33:32 - In reply to message 1 from Matías montes
You are right. The bug was fixed in CVS. A new version will be released soon. Thanks for reporting.