From d38c80b7733fcb528ef5e8597207e164a502343b Mon Sep 17 00:00:00 2001 From: michael Date: Mon, 9 Jun 2003 10:11:27 +0000 Subject: [PATCH] removed duplicated slash in getPath method --- lib/documentmanagement/Document.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/documentmanagement/Document.inc b/lib/documentmanagement/Document.inc index 1057e7a..992bf4e 100644 --- a/lib/documentmanagement/Document.inc +++ b/lib/documentmanagement/Document.inc @@ -615,7 +615,7 @@ class Document { * @return string full path of document */ function getPath() { - return Folder::getFolderPath($this->iFolderID) . "/" . $this->sFileName; + return Folder::getFolderPath($this->iFolderID) . $this->sFileName; } /** -- libgit2 0.21.4