Commit 78804342dac2e273619a6107ef62a24f8991839e

Authored by Neil Blakey-Milner
1 parent 5a8b1064

Move

presentation/lookAndFeel/knowledgeTree/documentmanagement/editDocument.php
to edit.php.


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@4500 c91229c3-7414-0410-bfa2-8a42b809f60b
presentation/lookAndFeel/knowledgeTree/documentmanagement/editDocument.php renamed to edit.php
... ... @@ -73,13 +73,13 @@ class KTEditDocumentDispatcher extends KTStandardDispatcher {
73 73  
74 74 if ($parents != 0) {
75 75 foreach (range(0,$parents) as $index) {
76   - $this->aBreadcrumbs[] = array("url" => "../browse.php?fFolderId=" . $folder_path_ids[$index], "name" => $folder_path_names[$index]);
  76 + $this->aBreadcrumbs[] = array("url" => $GLOBALS['KTRootUrl'] . "/browse.php?fFolderId=" . $folder_path_ids[$index], "name" => $folder_path_names[$index]);
77 77 }
78 78 }
79 79  
80 80 // now add this folder, _if we aren't in 1_.
81 81 if ($folder_id != 1) {
82   - $this->aBreadcrumbs[] = array("url" => "../browse.php?fFolderId=" . $folder_id, "name" => $oFolder->getName());
  82 + $this->aBreadcrumbs[] = array("url" => $GLOBALS['KTRootUrl'] . "/browse.php?fFolderId=" . $folder_id, "name" => $oFolder->getName());
83 83 }
84 84  
85 85 // now add the document
... ...