Fix for bug 169219. Check if the redirector type is an empty string as well. r=naving, sr=sspitzer, a=rjesup.

git-svn-id: svn://10.0.0.236/branches/MOZILLA_1_0_BRANCH@133692 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
cavin%netscape.com
2002-11-12 20:45:59 +00:00
parent 891ff56586
commit cbc1d68832

View File

@@ -221,7 +221,7 @@ function setupFixedUI()
//
// but for now, this isn't needed. we'll assume those who implement
// redirector types want to show fixed values.
var showFixedValues = gRedirectorType != null;
var showFixedValues = gRedirectorType ? true : false;
var controls = [document.getElementById("fixedServerName"),
document.getElementById("fixedUserName"),