Merge branch 'QA_4_4'

This commit is contained in:
Madhura Jayaratne 2015-06-09 15:23:28 +05:30
commit abc9434cf2
2 changed files with 2 additions and 1 deletions

View File

@ -56,6 +56,7 @@ phpMyAdmin - ChangeLog
4.4.10.0 (not yet released)
- bug #4950 Issues in database selection for replication
- bug #4951 Trying to save chart as image crashes the browser
4.4.9.0 (2015-06-04)
- bug #4920 relation view doesn't list fields of table in other database

View File

@ -9139,7 +9139,7 @@
for (var i=0; i<wl; i++) {
w += words[i];
if (context.measureText(w).width > tagwidth) {
if (context.measureText(w).width > tagwidth && w.length > words[i].length) {
breaks.push(i);
w = '';
i--;