Fix bug for creating view object

This commit is contained in:
Dany De Bontridder 2010-09-11 01:51:14 +00:00
parent 2f346c3f8e
commit e62c95b6a1

View file

@ -376,10 +376,14 @@ require_once('ac_common.php');
/**
*@brief Manage the view @table@
*/
class @class_name@
class @class_name@
{
/* example private $variable=array("easy_name"=>column_name,"email"=>"column_name_email","val3"=>0); */
protected $variable=array(@column_array@);
function __construct ($p_cn) {
$this->cn=$p_cn;
}
/**