Skip to content

Commit

Permalink
Fixed issue #10950: Smilies are missing in the popup html editor
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Apr 15, 2016
1 parent ca867ac commit a534383
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/views/admin/htmleditor/pop_editor_view.php
Expand Up @@ -37,7 +37,7 @@ function closeme()
CKEDITOR.on('instanceReady',CKeditor_OnComplete);
var oCKeditor = CKEDITOR.replace( 'MyTextarea' , { height : '350',
width : '98%',
customConfig : "<?php echo Yii::app()->getConfig('adminscripts') . '/ckeditor-config.js'; ?>",
customConfig : "<?php echo Yii::app()->getConfig('adminscripts') . '/ckeditor-config.js'; ?>",
toolbarStartupExpanded : true,
ToolbarCanCollapse : false,
toolbar : '<?php echo $toolbarname; ?>',
Expand All @@ -46,7 +46,7 @@ function closeme()
LimeReplacementFieldsQID : "<?php echo $iQuestionId; ?>",
LimeReplacementFieldsType: "<?php echo $sFieldType; ?>",
LimeReplacementFieldsAction: "<?php echo $sAction; ?>",
smiley_path: "<?php echo Yii::app()->getConfig('rooturl') . '/upload/images/smiley/msn/'; ?>",
smiley_path: "<?php echo Yii::app()->getConfig('uploadurl') . '/images/smiley/msn/'; ?>",
LimeReplacementFieldsPath : "<?php echo $this->createUrl("/admin/limereplacementfields/sa/index"); ?>",
language : "<?php echo $ckLanguage ?>"
<?php echo $htmlformatoption; ?> });
Expand Down

0 comments on commit a534383

Please sign in to comment.