From 7c2505f2b2ed1a4bcc420951b29d4e7c075f49b5 Mon Sep 17 00:00:00 2001 From: Michael Joseph Date: Fri, 8 Aug 2003 15:37:00 +0000 Subject: [PATCH] removed owl prefix from table aliases --- presentation/lookAndFeel/knowledgeTree/dashboardUI.inc | 2 +- presentation/lookAndFeel/knowledgeTree/help.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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\tHi" . (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); -- libgit2 0.21.4