Don't use viewsvn::paths::isdir() to construct the breadcrumbs
authorRobert Sesek <rsesek@bluestatic.org>
Sun, 11 Sep 2005 19:54:33 +0000 (19:54 +0000)
committerRobert Sesek <rsesek@bluestatic.org>
Sun, 11 Sep 2005 19:54:33 +0000 (19:54 +0000)
includes/paths.php

index cd7e9c45f82c179e2ffb0fa1b67274c5e042d47a..5266736452dfeb3480ebcd50f171f2e6bbb763e3 100644 (file)
@@ -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 .= '<a href="' . $viewsvn->path . '/' . $this->out('browse.php' . $this->fetch_rev_str(), $itembit) . '">' . $item . '</a>'. ($count != $val ? ' / ' : '');
                }