From 7f5aeea9b846f2a5e63ff94d719f8af65b4cbaeb Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Tue, 25 Oct 2011 00:43:37 +0200 Subject: [PATCH] Edit comments --- htdocs/admin/agenda_extsites.php | 2 -- .../includes/barcode/html.formbarcode.class.php | 17 +++++++++-------- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/htdocs/admin/agenda_extsites.php b/htdocs/admin/agenda_extsites.php index 95c561e82af..3b34474cd1f 100644 --- a/htdocs/admin/agenda_extsites.php +++ b/htdocs/admin/agenda_extsites.php @@ -101,8 +101,6 @@ $form=new Form($db); $formadmin=new FormAdmin($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(); $arrayofcss=array(); diff --git a/htdocs/includes/barcode/html.formbarcode.class.php b/htdocs/includes/barcode/html.formbarcode.class.php index 5c4de42efc2..d4435dbe8b7 100644 --- a/htdocs/includes/barcode/html.formbarcode.class.php +++ b/htdocs/includes/barcode/html.formbarcode.class.php @@ -24,9 +24,9 @@ /** - \class Form - \brief Classe permettant la generation de composants html -*/ + * \class Form + * \brief Classe permettant la generation de composants html + */ class FormBarCode { var $db; @@ -34,12 +34,13 @@ class FormBarCode /** - \brief Constructeur - \param DB handler d'acc�s base de donn�e - */ - function FormBarCode($DB) + * Constructor + * + * @param DoliDB $db Database handler + */ + function FormBarCode($db) { - $this->db = $DB; + $this->db = $db; return 1; }