Don't return / on the back of repos paths
authorRobert Sesek <rsesek@bluestatic.org>
Sun, 22 Jan 2006 19:18:31 +0000 (19:18 +0000)
committerRobert Sesek <rsesek@bluestatic.org>
Sun, 22 Jan 2006 19:18:31 +0000 (19:18 +0000)
includes/repository.php

index 1a83218bed2e9ff993a4437a5147b9c5a26436c1..79f30132b8cc23aea7157830546108d2ae3be91c 100644 (file)
@@ -131,11 +131,11 @@ class Repository
                
                if ($this->container)
                {
-                       return 'file://' . $this->path . $repository . '/';
+                       return 'file://' . $this->path . $repository;
                }
                else
                {
-                       return 'file://' . $this->path . '/';
+                       return 'file://' . $this->path;
                }
        }