Merge remote branch 'origin/master' into export_branch

This commit is contained in:
Adnan
2010-07-02 16:23:58 +05:00
18 changed files with 106 additions and 109 deletions

View File

@@ -867,9 +867,9 @@ function PMA_markRowsInit() {
checkbox.checked = marked_row[unique_id];
if (typeof(event) == 'object') {
table = this.parentNode;
i = 0;
while (table.tagName.toLowerCase() != 'table' && i < 20) {
i++;
parentTableLimit = 0;
while (table.tagName.toLowerCase() != 'table' && parentTableLimit < 20) {
parentTableLimit++;
table = table.parentNode;
}
@@ -884,7 +884,7 @@ function PMA_markRowsInit() {
}
while (i != this.rowIndex) {
table.rows[i].onmousedown();
$(table.rows[i]).mousedown();
if (i < this.rowIndex) {
i++;
} else {