From b40383d1df510571116cc76f1c026037e7244c3f Mon Sep 17 00:00:00 2001 From: Michael Joseph Date: Tue, 11 Mar 2003 08:03:57 +0000 Subject: [PATCH] fixed radio button selected for netscape --- presentation/lookAndFeel/knowledgeTree/documentmanagement/browseUI.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/presentation/lookAndFeel/knowledgeTree/documentmanagement/browseUI.inc b/presentation/lookAndFeel/knowledgeTree/documentmanagement/browseUI.inc index 5031872..ca13e27 100644 --- a/presentation/lookAndFeel/knowledgeTree/documentmanagement/browseUI.inc +++ b/presentation/lookAndFeel/knowledgeTree/documentmanagement/browseUI.inc @@ -40,11 +40,11 @@ function renderBrowseTypeSelect($sBrowseType) { // TODO: write function for onChange that checks if the new value return "\n \tView documents by: Folders\n" . + ((($sBrowseType=="folder") || (strlen($sBrowseType)==0)) ? " checked=\"checked\"" : "") . "/> Folders\n" . " Category\n" . + (($sBrowseType=="category") ? " checked=\"checked\"" : "") . "/> Category\n" . " Document Type\n"; + (($sBrowseType=="documentType") ? " checked=\"checked\"" : "") . "/> Document Type\n"; } /** -- libgit2 0.21.4