Commit 74d4a964baa06074db9527dfef1394896cbcc72a
1 parent
c800811b
changed getDisplayPath method to use the document name instead of the filename
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@1972 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
1 additions
and
1 deletions
lib/documentmanagement/Document.inc
| ... | ... | @@ -617,7 +617,7 @@ class Document { |
| 617 | 617 | * @return string full path to document |
| 618 | 618 | */ |
| 619 | 619 | function getDisplayPath() { |
| 620 | - return Folder::getFolderDisplayPath($this->iFolderID) . " > " . $this->sFileName; | |
| 620 | + return Folder::getFolderDisplayPath($this->iFolderID) . " > " . $this->sName; | |
| 621 | 621 | } |
| 622 | 622 | |
| 623 | 623 | /** | ... | ... |