Fixed bug #3425230 - enum data split at space char (more space to edit)

This commit is contained in:
Rouslan Placella
2011-10-21 11:34:42 +01:00
parent a3132f6e91
commit d4cce87b26
2 changed files with 2 additions and 1 deletions

View File

@@ -2,6 +2,7 @@ phpMyAdmin - ChangeLog
======================
3.4.8.0 (not yet released)
- bug #3425230 [interface] enum data split at space char (more space to edit)
3.4.7.0 (not yet released)
- bug #3418610 [interface] Links in navigation when $cfg['MainPageIconic'] = false

View File

@@ -1857,7 +1857,7 @@ $(document).ready(function() {
val = val.substr(1, val.length-2).replace(/''/g, "'").replace(/\\\\/g, '\\').replace(/\\'/g, "'").replace(/'/g, "'");
// escape the greater-than symbol
val = val.replace(/>/g, ">");
$("#enum_editor #values").append("<input type='text' value=" + val + " />");
$("#enum_editor #values").append("<input type='text' value='" + val + "' />");
}
});
// So we know which column's data is being edited