Reputation: 33
I have noticed that when you scroll through a page in PHPMYADMIN the column headers shift sometimes putting the column header over the top of a different column causing confusing but i cannot for the life of me work out where to report this bug.
Anyone know?
Upvotes: 1
Views: 709
Reputation: 12422
This bug has been reported and fixed for version 4.2.9; see https://sourceforge.net/p/phpmyadmin/bugs/4538 for details.
Upvotes: 0
Reputation: 32
Open <php_my_admin_folder>/js/sql.js and change
return $originalColumns.eq(i).width();
to
return Math.floor($originalColumns.eq(i).width()) + 1;
tested in pma 4.2.6+ and should work in prev releases.
Upvotes: 2