diff --git a/presentation/lookAndFeel/knowledgeTree/dashboardUI.inc b/presentation/lookAndFeel/knowledgeTree/dashboardUI.inc
index 4d0135b..0137120 100644
--- a/presentation/lookAndFeel/knowledgeTree/dashboardUI.inc
+++ b/presentation/lookAndFeel/knowledgeTree/dashboardUI.inc
@@ -253,7 +253,7 @@ function renderPage($aPendingDocumentList, $aCheckedOutDocumentList, $aSubscript
// some arb welcoming text goes here
$oUser = & User::get($_SESSION["userID"]);
$sUserName = $oUser->getName();
- $sToRender .= "\t\t
Hi" . (strlen($sUserName) > 0 ? " " . $sUserName : "") . ", welcome back to the " . lookupField($default->owl_organisations_table, "name", "id", $default->organisationID) . " DMS, part of the Knowledge Tree. | \n";
+ $sToRender .= "\t\tHi" . (strlen($sUserName) > 0 ? " " . $sUserName : "") . ", welcome back to the " . lookupField($default->organisations_table, "name", "id", $default->organisationID) . " DMS, part of the Knowledge Tree. | \n";
// dashboard news
$sToRender .= "\t\t\n";
diff --git a/presentation/lookAndFeel/knowledgeTree/help.php b/presentation/lookAndFeel/knowledgeTree/help.php
index 53f7827..2ae5540 100644
--- a/presentation/lookAndFeel/knowledgeTree/help.php
+++ b/presentation/lookAndFeel/knowledgeTree/help.php
@@ -16,7 +16,7 @@ echo $headingBar;
//Query the database for the helpURL based on the current action
$sQuery = "SELECT HLP.help_info as helpinfo ".
- "FROM $default->owl_help_table AS HLP WHERE '$fAction' = HLP.fSection";
+ "FROM $default->help_table AS HLP WHERE '$fAction' = HLP.fSection";
$sql = $default->db;
$sql->query($sQuery);
|