The branch, QA_3_4 has been updated via d4cce87b263ed00654588fa068c7ec73422fd465 (commit) from a3132f6e91f04dc8f885f4141e6d397460421fa4 (commit)
- Log ----------------------------------------------------------------- -----------------------------------------------------------------------
Summary of changes: ChangeLog | 1 + js/functions.js | 2 +- 2 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog index 2660fd8..6a2d9e3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/js/functions.js b/js/functions.js index b076661..3a1ed33 100644 --- a/js/functions.js +++ b/js/functions.js @@ -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
hooks/post-receive