Bug 353115: missing argument in restoreTextData, patch by Sylvain Pasche <sylvain.pasche@gmail.com>, r=me

This commit is contained in:
gavin%gavinsharp.com 2006-09-18 06:55:42 +00:00
Родитель 84a9a431dc
Коммит 64a7a62226
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1430,7 +1430,7 @@ SessionStoreService.prototype = {
}
var textArray = this.__SS_restore_text ? this.__SS_restore_text.split(" ") : [];
function restoreTextData(aContent) {
function restoreTextData(aContent, aPrefix) {
textArray.forEach(function(aEntry) {
if (/^((?:\d+\|)*)(#?)([^\s=]+)=(.*)$/.test(aEntry) && (!RegExp.$1 || RegExp.$1 == aPrefix)) {
var document = aContent.document;