From 70e4609dd7c7ce224376623906afdbba7ecc77fa Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 11 Sep 2005 22:23:40 +0000 Subject: [PATCH] We have to use viewsvn::paths::isdir() but we'll silence it --- includes/paths.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/paths.php b/includes/paths.php index 5266736..2dbf7c2 100644 --- a/includes/paths.php +++ b/includes/paths.php @@ -152,7 +152,8 @@ class Paths foreach ($temp AS $val => $item) { - $itembit .= $item . ($count != $val ? '/' : ''); + $itembit .= $item; + $itembit .= (($count != $val OR @$viewsvn->svn->common->isdir($itembit)) ? '/' : ''); $html .= '' . $item . ''. ($count != $val ? ' / ' : ''); } -- 2.22.5