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:
@@ -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"),
|
||||
|
||||
Reference in New Issue
Block a user