diff options
author | Mark Wells <mark@freeside.biz> | 2013-08-28 11:21:37 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2013-08-28 11:21:37 -0700 |
commit | 3be960f69d36d11f6f080e9e28ed167996df4f26 (patch) | |
tree | 7c790683226b1d295ab796f244e14eb3115714f2 | |
parent | 92fec248ff22a3c2c805e85d94daaff70a53d960 (diff) |
CKeditor API change, #24622
-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) { |