Commit d38c80b7733fcb528ef5e8597207e164a502343b
1 parent
63c01e38
removed duplicated slash in getPath method
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@2099 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
1 additions
and
1 deletions
lib/documentmanagement/Document.inc
| @@ -615,7 +615,7 @@ class Document { | @@ -615,7 +615,7 @@ class Document { | ||
| 615 | * @return string full path of document | 615 | * @return string full path of document |
| 616 | */ | 616 | */ |
| 617 | function getPath() { | 617 | function getPath() { |
| 618 | - return Folder::getFolderPath($this->iFolderID) . "/" . $this->sFileName; | 618 | + return Folder::getFolderPath($this->iFolderID) . $this->sFileName; |
| 619 | } | 619 | } |
| 620 | 620 | ||
| 621 | /** | 621 | /** |