Bug 613530 - Fix a typo in nsSessionStore.js [r=zpao]

This commit is contained in:
ithinc 2011-07-11 15:09:47 -07:00
Родитель 0df29785c1
Коммит 63de3e4390
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -2958,8 +2958,11 @@ SessionStoreService.prototype = {
// so we can just set the URL to null.
browser.__SS_restore_data = { url: null };
browser.__SS_restore_tab = aTab;
if (didStartLoad)
browser.stop();
didStartLoad = true;
browser.loadURI(tabData.userTypedValue, null, null, true);
browser.loadURIWithFlags(tabData.userTypedValue,
Ci.nsIWebNavigation.LOAD_FLAGS_ALLOW_THIRD_PARTY_FIXUP);
}
}