From 8d5ad334ef53ccd1af00afe155649e88c0cd2a4d Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 11 Sep 2005 19:54:33 +0000 Subject: [PATCH] Don't use viewsvn::paths::isdir() to construct the breadcrumbs --- includes/paths.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/paths.php b/includes/paths.php index cd7e9c4..5266736 100644 --- a/includes/paths.php +++ b/includes/paths.php @@ -152,7 +152,7 @@ class Paths foreach ($temp AS $val => $item) { - $itembit .= $item . (($viewsvn->svn->common->isdir($path) OR $count != $val) ? '/' : ''); + $itembit .= $item . ($count != $val ? '/' : ''); $html .= '' . $item . ''. ($count != $val ? ' / ' : ''); } -- 2.22.5