Merge remote-tracking branch 'origin/QA_4_4' into QA_4_4
This commit is contained in:
commit
e2f0d39d61
@ -2,6 +2,7 @@ phpMyAdmin - ChangeLog
|
||||
======================
|
||||
|
||||
4.4.11.0 (not yet released)
|
||||
- bug Missing selected/entered values when editing active options in visual query builder
|
||||
|
||||
4.4.10.0 (2015-06-17)
|
||||
- bug #4950 Issues in database selection for replication
|
||||
|
||||
@ -199,6 +199,7 @@ function history_edit(index)
|
||||
document.getElementById('query_having').style.display = 'block';
|
||||
}
|
||||
if (type == "Rename") {
|
||||
document.getElementById('e_rename').value = history_array[index].get_obj().getrename_to();
|
||||
document.getElementById('query_rename_to').style.left = '530px';
|
||||
document.getElementById('query_rename_to').style.top = '130px';
|
||||
document.getElementById('query_rename_to').style.position = 'absolute';
|
||||
@ -207,6 +208,7 @@ function history_edit(index)
|
||||
document.getElementById('query_rename_to').style.display = 'block';
|
||||
}
|
||||
if (type == "Aggregate") {
|
||||
document.getElementById('e_operator').value = history_array[index].get_obj().get_operator();
|
||||
document.getElementById('query_Aggregate').style.left = '530px';
|
||||
document.getElementById('query_Aggregate').style.top = '130px';
|
||||
document.getElementById('query_Aggregate').style.position = 'absolute';
|
||||
|
||||
@ -1233,7 +1233,7 @@ function PMA_getAggregateQueryPanel()
|
||||
$html .= '<option value="min"> MIN </option>';
|
||||
$html .= '<option value="max"> MAX </option>';
|
||||
$html .= '<option value="avg"> AVG </option>';
|
||||
$html .= '<option value="avg"> COUNT </option>';
|
||||
$html .= '<option value="count"> COUNT </option>';
|
||||
$html .= '</select>';
|
||||
$html .= '</td></tr>';
|
||||
$html .= '</tbody>';
|
||||
|
||||
Loading…
Reference in New Issue
Block a user