Skip to content

Commit

Permalink
Fix bad path
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Sep 17, 2015
1 parent 8bb832d commit 57521f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions htdocs/core/class/html.form.class.php
Expand Up @@ -3015,7 +3015,7 @@ function select_all_categories($type, $selected='', $htmlname="parent", $maxleng
global $langs;
$langs->load("categories");

include_once DOL_DOCUMENT_ROOT.'/categories/class.categorie.class.php';
include_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';

$cat = new Categorie($this->db);
$cate_arbo = $cat->get_full_arbo($type,$excludeafterid);
Expand Down Expand Up @@ -4675,7 +4675,7 @@ function showCategories($id, $type, $rendermode=0)
{
global $db;

include_once DOL_DOCUMENT_ROOT.'/categories/class.categorie.class.php';
include_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';

$cat = new Categorie($db);
$categories = $cat->containing($id, $type);
Expand Down

0 comments on commit 57521f6

Please sign in to comment.