Bug 519262 - Forgot password doesn't work -> throbber keeps spinning

Just get the pref without slashifying with getURLPref.
This commit is contained in:
Edward Lee 2009-09-28 13:34:56 -07:00
Родитель 08eb7e1a48
Коммит 6bdcdd5e20
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -656,7 +656,7 @@ WeaveSvc.prototype = {
}))(),
requestPasswordReset: function WeaveSvc_requestPasswordReset(username) {
let res = new Resource(Utils.getURLPref("pwChangeURL"));
let res = new Resource(Svc.Prefs.get("pwChangeURL"));
res.authenticator = new NoOpAuthenticator();
res.headers['Content-Type'] = 'application/x-www-form-urlencoded';
let ret = res.post('uid=' + username);