Bug 261136 - Warning: assignment to undeclared variable rv

p=timeless@bemail.org (timeless)
r=ajvincent@gmail.com (Alex Vincent)
Venkman Only (NPOTB).
This commit is contained in:
gijskruitbosch%gmail.com 2007-09-03 08:26:31 +00:00
Родитель e8625b8e65
Коммит 2523375b31
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -292,12 +292,12 @@ function prompt(msg, initial, parent, title)
parent = window; parent = window;
if (!title) if (!title)
title = MSG_PROMPT; title = MSG_PROMPT;
rv = { value: initial }; var rv = { value: initial };
if (!ps.prompt (parent, title, msg, rv, null, {value: null})) if (!ps.prompt (parent, title, msg, rv, null, {value: null}))
return null; return null;
return rv.value return rv.value;
} }
function getChildById (element, id) function getChildById (element, id)