diff --git a/presentation/lookAndFeel/knowledgeTree/help.php b/presentation/lookAndFeel/knowledgeTree/help.php
index 5016885..53f7827 100644
--- a/presentation/lookAndFeel/knowledgeTree/help.php
+++ b/presentation/lookAndFeel/knowledgeTree/help.php
@@ -7,8 +7,12 @@ $hStretched = "$default->graphicsUrl/hrepeat.gif";
$row1 = "
";
//Output a title bar
-echo "
\n ";
+$headingBar = "\n";
+$headingBar .= "\t\n";
+$headingBar .= "\t\t | \n";
+$headingBar .= "\t
\n";
+$headingBar .= "
\n";
+echo $headingBar;
//Query the database for the helpURL based on the current action
$sQuery = "SELECT HLP.help_info as helpinfo ".
@@ -17,13 +21,10 @@ $sQuery = "SELECT HLP.help_info as helpinfo ".
$sql = $default->db;
$sql->query($sQuery);
-if ($sql->next_record())
-{
+if ($sql->next_record()) {
require_once("$default->uiDirectory/help/" . $sql->f("helpinfo"));
-}
-else
-{
- echo "No help available for "."$fAction";
+} else {
+ echo "No help available for $fAction";
}
?>