Commit 41f259205aa46a696f7915014021671acd239f28
1 parent
102d0278
specifically set colour for ns; added folder heading
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@1491 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
2 additions
and
2 deletions
presentation/lookAndFeel/knowledgeTree/search/advancedSearchUI.inc
| ... | ... | @@ -13,7 +13,7 @@ function renderHeading() { |
| 13 | 13 | global $default; |
| 14 | 14 | $sSectionName = $default->siteMap->getSectionName(substr($_SERVER["PHP_SELF"], strlen($default->rootUrl), strlen($_SERVER["PHP_SELF"]))); |
| 15 | 15 | $sColor = $default->siteMap->getSectionColour($sSectionName, "th"); |
| 16 | - $sToRender .= "<tr align=\"left\"><th class=\"sectionHeading\" bgcolor=\"$sColor\">Advanced Search</th></tr>\n"; | |
| 16 | + $sToRender .= "<tr align=\"left\"><th class=\"sectionHeading\" bgcolor=\"$sColor\"><font color=\"ffffff\">Advanced Search</font></th></tr>\n"; | |
| 17 | 17 | $sToRender .= "<tr/>\n"; |
| 18 | 18 | $sToRender .= "<tr/>\n"; |
| 19 | 19 | return $sToRender; |
| ... | ... | @@ -71,7 +71,7 @@ function getSearchResults($sSQLSearchString, $iStartIndex, $sSearchText, $sMetaT |
| 71 | 71 | |
| 72 | 72 | $aColumns = array("folder_image_url", "document_name"); |
| 73 | 73 | $aColumnTypes = array(4,3); |
| 74 | - $aColumnHeaders = array("","Document"); | |
| 74 | + $aColumnHeaders = array("<font color=\"ffffff\">Folder</font>","<font color=\"ffffff\">Document</font>"); | |
| 75 | 75 | $aLinkURLs = array("$default->rootUrl/control.php?action=browse","$default->rootUrl/control.php?action=viewDocument"); |
| 76 | 76 | $aDBQueryStringColumns = array("document_id","folder_id"); |
| 77 | 77 | $aQueryStringVariableNames = array("fDocumentID", "fFolderID"); | ... | ... |