I don't know enough about the code the understand what was going wrong for me but on line 1152 of firebug-lite.js in version 1.4.0 the variable url was coming in as an Object rather than as a string and so the method url.indexOf was undefined:
this.parseURLParamsArray=function(url){var q=url?url.indexOf("?"):-1;
A patch was to always ensure that url was a string before calling indexOf (i.e. url.toString().indexOf):
this.parseURLParamsArray=function(url){var q=url?url.toString().indexOf("?"):-1;
Sorry for not knowing being able to say why this was happening but I thought it better to report in any case.
And thanks for a great piece of software.
I don't know enough about the code the understand what was going wrong for me but on line 1152 of firebug-lite.js in version 1.4.0 the variable
urlwas coming in as anObjectrather than as astringand so the methodurl.indexOfwas undefined:A patch was to always ensure that
urlwas a string before callingindexOf(i.e.url.toString().indexOf):Sorry for not knowing being able to say why this was happening but I thought it better to report in any case.
And thanks for a great piece of software.