From d4cce87b263ed00654588fa068c7ec73422fd465 Mon Sep 17 00:00:00 2001 From: Rouslan Placella Date: Fri, 21 Oct 2011 11:34:42 +0100 Subject: [PATCH] Fixed bug #3425230 - enum data split at space char (more space to edit) --- ChangeLog | 1 + js/functions.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 2660fd87f..6a2d9e3e7 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 b07666186..3a1ed33e9 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(""); + $("#enum_editor #values").append(""); } }); // So we know which column's data is being edited