Skip to content
Snippets Groups Projects
Commit 94d923f3 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: Can't provide by default a binary program with no sources

parent 3ff83a3b
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,7 @@
/**
* \defgroup barcode Module barcode
* \brief Module pour gerer les codes barres
* \version $Id: modBarcode.class.php,v 1.28 2011/07/31 23:28:11 eldy Exp $
* \version $Id: modBarcode.class.php,v 1.29 2011/08/04 12:40:17 eldy Exp $
*/
/**
......@@ -70,7 +70,9 @@ class modBarcode extends DolibarrModules
// Constants
// Example: $this->const=array(0=>array('MYMODULE_MYNEWCONST1','chaine','myvalue','This is a constant to add',0),
// 1=>array('MYMODULE_MYNEWCONST2','chaine','myvalue','This is another constant to add',0) );
$this->const = array(0=>array('GENBARCODE_LOCATION','chaine',DOL_DOCUMENT_ROOT.'/includes/barcode/php-barcode/genbarcode/genbarcode','Path to genbarcode command line tool',0));
$this->const = array(
//0=>array('GENBARCODE_LOCATION','chaine',DOL_DOCUMENT_ROOT.'/includes/barcode/php-barcode/genbarcode/genbarcode','Path to genbarcode command line tool',0)
);
// Boxes
$this->boxes = array();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment