the "LockFromUpdate" checkbox in the sql query edit popup window is not checked by default.
line 365 of /libraries/sql_query_form.lib.php reads:
document.writeln(' <input type="checkbox" name="LockFromUpdate" value="1" id="checkbox_lock" /> <label for="checkbox_lock"><?php echo $GLOBALS['strQueryWindowLock']; ?></label> ');
it should read:
document.writeln(' <input type="checkbox" name="LockFromUpdate" checked="checked" id="checkbox_lock" /> <label for="checkbox_lock"><?php echo $GLOBALS['strQueryWindowLock']; ?></label> ');
(note: attribute change from 'value="1"' to 'checked="checked"', per w3c:
http://www.w3.org/TR/html401/interact/forms.html#h-17.4\)
this makes the "LockFromUpdate" checkbox in the sql query edit popup checked by default, as i believe the erroneous attribute was meant to do.
http://www.w3.org/TR/html401/interact/forms.html#h-17.4
this makes the "LockFromUpdate" checkbox in the sql query edit popup checked by default, as i believe the erroneous attribute was meant to do.
This bug was fixed in repository and will be part of a future release; thanks for reporting.