What does Firebug "XML cannot be the whole program" error message mean?

firebug, firefox3.5, javascript

Solution

If you put JavaScript in a js file (which I assume you did), do NOT put the script tags, put

g_BuildServer = "/";

only.

Otherwise, to the parser, you just provided an XML document as a script.

Problem

I just got this error message in Firebug. A google search reveals nothing but other mystified people! Does anyone have any idea what it means? It's being indicated on the last line of this 3-line script: ``` <script> g_BuildServer = "/"; </script> ```

Original source