diff options
author | Guillaume (ioguix) de Rorthais | 2010-12-19 21:20:07 +0000 |
---|---|---|
committer | Guillaume (ioguix) de Rorthais | 2010-12-19 21:20:07 +0000 |
commit | 8d20e11577d2300462ff80897f28fe04ec20a8df (patch) | |
tree | b10d82d9fa2297755ad27501f68abdadeefaf8dc | |
parent | e25f5e14d795b25c6a06c2031e30c3a300eb1c3e (diff) |
Fix #3139003 "Autocomplete doesn't insert value", report and patch by Aleksander Machniak
-rw-r--r-- | js/ac_insert_row.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/ac_insert_row.js b/js/ac_insert_row.js index 5ca85efa..6ac0bef2 100644 --- a/js/ac_insert_row.js +++ b/js/ac_insert_row.js @@ -173,7 +173,7 @@ with(jQuery('tr.acline')) { var a = jQuery(this).find('td > a.fkval'); for (i=0; i < a.length; i++) { - jQuery('input[name=values\\['+ a[i].name +'\\]]').val(a[i].innerHTML); + jQuery('input[name="values['+ a[i].name +']"]').val(a[i].innerHTML); } hideAc(); }); |