Commit e86e5d6ed36d21de5cb03abaf1b52e1de9d1d98c

Authored by rob
1 parent 639f64fb

Fixed syntax error


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@730 c91229c3-7414-0410-bfa2-8a42b809f60b
presentation/lookAndFeel/knowledgeTree/documentmanagement/emailBL.php
... ... @@ -39,7 +39,7 @@ if (checkSession()) {
39 39 } else {
40 40 $sMessage = "Your colleague, " . $oUser->getName() . ", wishes you to view the document entitled '" . $oDocument->getName() . "'.\n Click on the hyperlink below to view it";
41 41 }
42   - $sLink = "https://" . $_SERVER["SERVER_NAME"] . $default->owl_root_url . "/control.php?action=viewDocument&fDocumentID=" . $fDocumentID;
  42 + $sLink = "https://" . $_SERVER["SERVER_NAME"] . $default->owl_root_url . "/presentation/lookAndFeel/knowledgeTree/documentmanagement/viewBL.php?fDocumentID=" . $fDocumentID;
43 43  
44 44 $sHyperlink = "<a href = " . $sLink .">" . $oDocument->getName() . "</a>";
45 45 //email the hyperlink
... ...