Commit b874406083acebfe0339b51d815c01ec4f0b9389

Authored by Michael Joseph
1 parent bdeda574

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 }
... ...