Skip to content

Commit

Permalink
replace html code by html5
Browse files Browse the repository at this point in the history
  • Loading branch information
frederic34 committed Feb 23, 2019
1 parent ec956e1 commit c7df326
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions htdocs/core/boxes/box_graph_orders_supplier_permonth.php
Expand Up @@ -28,18 +28,18 @@
*/
class box_graph_orders_supplier_permonth extends ModeleBoxes
{
var $boxcode="orderssupplierpermonth";
var $boximg="object_order";
var $boxlabel="BoxSuppliersOrdersPerMonth";
var $depends = array("fournisseur");
public $boxcode="orderssupplierpermonth";
public $boximg="object_order";
public $boxlabel="BoxSuppliersOrdersPerMonth";
public $depends = array("fournisseur");

/**
/**
* @var DoliDB Database handler.
*/
public $db;

var $info_box_head = array();
var $info_box_contents = array();
public $info_box_head = array();
public $info_box_contents = array();


/**
Expand Down
2 changes: 1 addition & 1 deletion htdocs/core/class/dolgraph.class.php
Expand Up @@ -936,7 +936,7 @@ private function draw_jflot($file, $fileurl)
$tag=dol_escape_htmltag(dol_string_unaccent(dol_string_nospecial(basename($file), '_', array('-','.'))));

$this->stringtoshow ='<!-- Build using '.$this->_library.' -->'."\n";
if (! empty($this->title)) $this->stringtoshow.='<div align="center" class="dolgraphtitle'.(empty($this->cssprefix)?'':' dolgraphtitle'.$this->cssprefix).'">'.$this->title.'</div>';
if (! empty($this->title)) $this->stringtoshow.='<div class="center" class="dolgraphtitle'.(empty($this->cssprefix)?'':' dolgraphtitle'.$this->cssprefix).'">'.$this->title.'</div>';
if (! empty($this->shownographyet))
{
$this->stringtoshow.='<div style="width:'.$this->width.'px;height:'.$this->height.'px;" class="nographyet"></div>';
Expand Down

0 comments on commit c7df326

Please sign in to comment.