From 74d4a964baa06074db9527dfef1394896cbcc72a Mon Sep 17 00:00:00 2001 From: Michael Joseph Date: Thu, 29 May 2003 10:52:09 +0000 Subject: [PATCH] changed getDisplayPath method to use the document name instead of the filename --- 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 dcd209e..85e5689 100644 --- a/lib/documentmanagement/Document.inc +++ b/lib/documentmanagement/Document.inc @@ -617,7 +617,7 @@ class Document { * @return string full path to document */ function getDisplayPath() { - return Folder::getFolderDisplayPath($this->iFolderID) . " > " . $this->sFileName; + return Folder::getFolderDisplayPath($this->iFolderID) . " > " . $this->sName; } /** -- libgit2 0.21.4