From 42666a014666df788f9b36dd3d38af9f178cfedd Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Tue, 22 Aug 2017 14:51:47 +0200 Subject: [PATCH] Fix bad link --- htdocs/admin/dolistore/class/dolistore.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/admin/dolistore/class/dolistore.class.php b/htdocs/admin/dolistore/class/dolistore.class.php index 3b3abadd3e4..cd307f36aa9 100644 --- a/htdocs/admin/dolistore/class/dolistore.class.php +++ b/htdocs/admin/dolistore/class/dolistore.class.php @@ -203,14 +203,14 @@ class DolistoreModel for ($i = 0; $i < count($this->categories); $i++) { $cat = $this->categories[$i]; if ($cat->is_root_category == 1 && $parent == 0) { - $html .= '
  • id.'" ' .'title="'.dol_escape_htmltag(strip_tags($cat->description->language[$this->lang])).'"' .'>'.$cat->name->language[$this->lang].' '.$cat->nb_products_recursive.'

    '; $html .= self::get_categories($cat->id); $html .= "
  • \n"; } elseif (trim($cat->id_parent) == $parent && $cat->active == 1 && trim($cat->id_parent) != 0) { // si cat est de ce niveau $select = ($cat->id == $this->categorie) ? ' selected' : ''; - $html .= '
  • '.$cat->name->language[$this->lang].' '.$cat->nb_products_recursive.''; $html .= self::get_categories($cat->id);