PS2007 - Minor Bug in shell.js

F

foo7654321

There is a minor bug in shell.js, line 207:

document.styleSheets[0].rules[g_nSiteTitleStyleIndex].style.visibility =
"visible";

i.e. style-sheet at index 0 is explicitly referenced. Should be:

document.styleSheets[g_nCoreCssIndex].rules[g_nSiteTitleStyleIndex].style.visibility = "visible";

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/communitie...9d63cf9645&dg=microsoft.public.project.server
 
Top