Bug 70605 - Fix for mass edit

git-svn-id: svn://svn.office.custis.ru/3rdparty/bugzilla.org/trunk@1310 6955db30-a419-402b-8a0d-67ecbb4d7f56
master
vfilippov 2011-07-25 14:29:43 +00:00
parent b3cd02a492
commit aea98b884a
1 changed files with 2 additions and 1 deletions

View File

@ -161,7 +161,8 @@ function showHideStatusItems(is_duplicate, initial_status)
// Make sure that fields whose visibility or values are controlled
// by "resolution" behave properly when resolution is hidden.
var resolution = document.getElementById('resolution');
if (resolution && resolution.options[0].value != '')
if (resolution && resolution.options[0].value != '' &&
resolution.options[0].value != '--do_not_change--')
{
resolution.bz_lastSelected = resolution.selectedIndex;
var emptyOption = new Option('', '');