Bug 606859: sherlock plugin loading code was broken by bug 599751, r+a=bustage

This commit is contained in:
Gavin Sharp 2010-10-24 21:11:15 -04:00
Родитель aa0b369a7d
Коммит ed9283ba8b
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1867,7 +1867,7 @@ Engine.prototype = {
// Adjust the start index to account for the opening quote
valueStart = quoteStart + "\"".length;
// Find the closing quote
let valueEnd = lLine.indexOf("\"", valueStart);
var valueEnd = lLine.indexOf("\"", valueStart);
// If there is no closing quote, just go to the end of the line
if (valueEnd == -1)
valueEnd = aLine.length;