Commit d3856f538d45b67fd8514da860c7a6669850fc10

Authored by michael
1 parent f8125267

corrected javascript usage for IE


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@2246 c91229c3-7414-0410-bfa2-8a42b809f60b
presentation/lookAndFeel/knowledgeTree/foldermanagement/editUI.inc
... ... @@ -163,7 +163,7 @@ function renderFolderSection($sSectionName, $sHeadingText, $bDisplayLink, $iFold
163 163 if ($bDisplayLink) {
164 164 $sLink = generateControllerLink("editFolder", "fFolderID=$iFolderID&fShowSection=$sSectionName", $sHeadingText);
165 165 } else {
166   - $sLink = "<a href=\"javascript:void();\" onClick=\"switchDiv('$sSectionName', 'folder');\">$sHeadingText</a>";
  166 + $sLink = "<a href=\"#\" onClick=\"switchDiv('$sSectionName', 'folder');\">$sHeadingText</a>";
167 167 }
168 168 return "<tr bgcolor=\"" . getColour($iColour) . "\"><td width=\"100%\">$sLink</td></tr>\n";
169 169 }
... ...