Edit comments

This commit is contained in:
Laurent Destailleur 2011-10-25 00:43:37 +02:00
parent ee9f1aa83b
commit 7f5aeea9b8
2 changed files with 9 additions and 10 deletions

View File

@ -101,8 +101,6 @@ $form=new Form($db);
$formadmin=new FormAdmin($db); $formadmin=new FormAdmin($db);
$formother=new FormOther($db); $formother=new FormOther($db);
//$arrayofjs=array('/includes/jquery/plugins/colorpicker/jquery.colorpicker.js');
//$arrayofcss=array('/includes/jquery/plugins/colorpicker/jquery.colorpicker.css');
$arrayofjs=array(); $arrayofjs=array();
$arrayofcss=array(); $arrayofcss=array();

View File

@ -24,9 +24,9 @@
/** /**
\class Form * \class Form
\brief Classe permettant la generation de composants html * \brief Classe permettant la generation de composants html
*/ */
class FormBarCode class FormBarCode
{ {
var $db; var $db;
@ -34,12 +34,13 @@ class FormBarCode
/** /**
\brief Constructeur * Constructor
\param DB handler d'acc<EFBFBD>s base de donn<EFBFBD>e *
*/ * @param DoliDB $db Database handler
function FormBarCode($DB) */
function FormBarCode($db)
{ {
$this->db = $DB; $this->db = $db;
return 1; return 1;
} }