From 44c73d51d3bd63e7bd601429928b2e97bff6ecce Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 22 Jan 2006 19:18:31 +0000 Subject: [PATCH] Don't return / on the back of repos paths --- includes/repository.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/repository.php b/includes/repository.php index 1a83218..79f3013 100644 --- a/includes/repository.php +++ b/includes/repository.php @@ -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; } } -- 2.22.5