Merge remote branch 'origin/master'

Conflicts:
	po/fr.po
	po/sl.po
This commit is contained in:
ninadsp
2010-07-03 21:00:08 +05:30
10 changed files with 114 additions and 90 deletions

View File

@@ -876,9 +876,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;
}
@@ -893,7 +893,7 @@ function PMA_markRowsInit() {
}
while (i != this.rowIndex) {
table.rows[i].onmousedown();
$(table.rows[i]).mousedown();
if (i < this.rowIndex) {
i++;
} else {