From a8c2640ec17acb65de523fdba85e8873db55d358 Mon Sep 17 00:00:00 2001 From: Cameron Date: Sat, 9 Mar 2013 20:57:15 -0800 Subject: [PATCH] Fix for button insert. --- e107_plugins/tinymce/plugins/e107bbcode/dialog.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e107_plugins/tinymce/plugins/e107bbcode/dialog.php b/e107_plugins/tinymce/plugins/e107bbcode/dialog.php index 4078931c7..9a468e3b3 100644 --- a/e107_plugins/tinymce/plugins/e107bbcode/dialog.php +++ b/e107_plugins/tinymce/plugins/e107bbcode/dialog.php @@ -43,7 +43,7 @@ $(document).ready(function() var buttonClass = (buttonType != '') ? 'btn-'+buttonType : ''; - var html = '' + buttonText + ''; + var html = '' + buttonText + ' '; // alert(html); tinyMCEPopup.editor.execCommand('mceInsertContent', false, html); tinyMCEPopup.close();