Fixed bug #3425230 - enum data split at space char (more space to edit)
This commit is contained in:
@@ -2,6 +2,7 @@ phpMyAdmin - ChangeLog
|
|||||||
======================
|
======================
|
||||||
|
|
||||||
3.4.8.0 (not yet released)
|
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)
|
3.4.7.0 (not yet released)
|
||||||
- bug #3418610 [interface] Links in navigation when $cfg['MainPageIconic'] = false
|
- bug #3418610 [interface] Links in navigation when $cfg['MainPageIconic'] = false
|
||||||
|
@@ -1857,7 +1857,7 @@ $(document).ready(function() {
|
|||||||
val = val.substr(1, val.length-2).replace(/''/g, "'").replace(/\\\\/g, '\\').replace(/\\'/g, "'").replace(/'/g, "'");
|
val = val.substr(1, val.length-2).replace(/''/g, "'").replace(/\\\\/g, '\\').replace(/\\'/g, "'").replace(/'/g, "'");
|
||||||
// escape the greater-than symbol
|
// escape the greater-than symbol
|
||||||
val = val.replace(/>/g, ">");
|
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
|
// So we know which column's data is being edited
|
||||||
|
Reference in New Issue
Block a user