Skip to content

Commit

Permalink
Fixed issue #11013: Small editor when adding/editing a question group
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Apr 22, 2016
1 parent 32aa2e8 commit dec5874
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -50,7 +50,7 @@
<!-- Description -->
<div class="form-group">
<label class="control-label col-sm-2" for='description_<?php echo $grouplang; ?>'><?php eT("Description:"); ?></label>
<div class="col-sm-3 input-group">
<div class="col-sm-4 input-group">
<?php echo CHtml::textArea("description_{$grouplang}","",array('class'=>'form-control','cols'=>'60','rows'=>'8','id'=>"description_{$grouplang}")); ?>
<?php echo getEditor("group-desc","description_".$grouplang, "[".gT("Description:", "js")."](".$grouplang.")",$surveyid,'','',$action); ?>
</div>
Expand Down
Expand Up @@ -35,7 +35,7 @@

<div class="form-group">
<label class="col-sm-2 control-label" for="description_<?php echo $aGroupData[$i]['language']; ?>"><?php eT("Description:"); ?></label>
<div class="col-sm-3 htmleditorboot input-group">
<div class="col-sm-5">
<?php echo CHtml::textArea("description_{$aGroupData[$i]['language']}",$aGroupData[$i]['description'],array('class'=>'form-control','cols'=>'60','rows'=>'8','id'=>"description_{$aGroupData[$i]['language']}")); ?>
<?php echo getEditor("group-desc","description_".$aGroupData[$i]['language'], "[".gT("Description:", "js")."](".$aGroupData[$i]['language'].")",$surveyid,$gid,'',$action); ?>
</div>
Expand Down

0 comments on commit dec5874

Please sign in to comment.