diff options
author | Mark Wells <mark@freeside.biz> | 2013-08-28 11:21:17 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2013-08-28 11:21:17 -0700 |
commit | 31f3ba70c953bdd40119aa4d4c097ab6d05b5e6c (patch) | |
tree | 7285fd007b5f9cb69c87ef9263cec0dc03d9c096 /httemplate/edit/msg_template.html | |
parent | 06025b02ef920d4994442477ff43be7d2d6ae89b (diff) |
CKeditor API change, #24622
Diffstat (limited to 'httemplate/edit/msg_template.html')
-rw-r--r-- | httemplate/edit/msg_template.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/edit/msg_template.html b/httemplate/edit/msg_template.html index 7205ba844..fa375a0aa 100644 --- a/httemplate/edit/msg_template.html +++ b/httemplate/edit/msg_template.html @@ -328,8 +328,8 @@ my $widget = new HTML::Widgets::SelectLayers( my $sidebar = ' <SCRIPT TYPE="text/javascript"> function insertHtml(what) { - var oEditor = FCKeditorAPI.GetInstance("body"); - oEditor.InsertHtml(what); + var oEditor = CKEDITOR.instances["body"]; + oEditor.insertHtml(what); }; function areyousure(url, message) { |