From: Antoine Musso Date: Fri, 15 Jul 2005 01:48:48 +0000 (+0000) Subject: check being done twice X-Git-Tag: 1.5.0beta4~127 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/operations/recherche.php?a=commitdiff_plain;h=e54940303161d322cd8b02d4ac65a449b72b38d2;p=lhc%2Fweb%2Fwiklou.git check being done twice --- diff --git a/includes/Skin.php b/includes/Skin.php index 3548dc835d..3722a0fc9b 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -455,11 +455,10 @@ END; $return .= '
'; } else { # grab the others elements - $return .= Skin::drawCategoryBrowser($parent, $skin); + $return .= Skin::drawCategoryBrowser($parent, $skin) . ' > '; } # add our current element to the list $eltitle = Title::NewFromText($element); - if (!empty($parent)) $return .= ' > '; $return .= $skin->makeLinkObj( $eltitle, $eltitle->getText() ) ; } return $return;