Fix for bug # 103050. Wrong index value passed for OnHistoryGotoIndex(). r=chak sr=alecf

This commit is contained in:
radha%netscape.com 2001-11-20 19:14:11 +00:00
Родитель 02a8b7043e
Коммит 0ec86a19ef
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -658,7 +658,7 @@ nsSHistory::LoadEntry(PRInt32 aIndex, long aLoadType, PRUint32 aHistCmd)
}
else if (aHistCmd == HIST_CMD_GOTOINDEX) {
// We are going somewhere else. This is not reload either
listener->OnHistoryGotoIndex(mIndex, nextURI, &canNavigate);
listener->OnHistoryGotoIndex(aIndex, nextURI, &canNavigate);
}
}
}