Index: openacs-4/packages/xowiki/tcl/form-field-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/tcl/form-field-procs.tcl,v diff -u -r1.245 -r1.246 --- openacs-4/packages/xowiki/tcl/form-field-procs.tcl 8 Jun 2015 07:27:40 -0000 1.245 +++ openacs-4/packages/xowiki/tcl/form-field-procs.tcl 8 Jun 2015 15:51:07 -0000 1.246 @@ -2007,7 +2007,7 @@ set submit_callback "$submit_callback [my submit_callback]" ::xo::Page requireJS [subst { - function load_ckinline_$id () { + function load_$id () { CKEDITOR.inline('$id', { on: { instanceReady: function(e) { @@ -2023,11 +2023,11 @@ \$(document).ready(function() { if (\$('#$id').parents('.repeatable').length != 0) { if (\$('#$id').is(':visible')) { - load_ckinline_$id (); + load_$id (); } } else { //this is not inside a repeatable container, load normally - load_ckinline_$id (); + load_$id (); } $ready_callback }); Index: openacs-4/packages/xowiki/tcl/repeat-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/tcl/repeat-procs.tcl,v diff -u -r1.4 -r1.5 --- openacs-4/packages/xowiki/tcl/repeat-procs.tcl 27 Apr 2015 15:28:22 -0000 1.4 +++ openacs-4/packages/xowiki/tcl/repeat-procs.tcl 8 Jun 2015 15:51:07 -0000 1.5 @@ -184,7 +184,7 @@ # if {!$containerDisabled} { ::html::a -href "#" \ -id "repeat-del-link-[$c set id]" \ - -class "repeat-del-link [my set CSSclass]" \ + -class "repeat-del-link" \ -onclick "return xowiki.repeat.delItem(this,\"$clientData\")" { html::t [my repeat_remove_label] } @@ -197,7 +197,7 @@ html::a -href "#" \ -id "repeat-add-link-[my id]" \ -style "$hidden" \ - -class "repeat-add-link [my set CSSclass]" \ + -class "repeat-add-link" \ -onclick "return xowiki.repeat.addItem(this,\"$clientData\");" { html::t [my repeat_add_label] }