Fixed wrong concatenation operator

This commit is contained in:
Alexander Makarov 2016-10-16 02:24:31 +03:00
parent 55c45bc8dc
commit 4d0b242a3f

View File

@ -6,7 +6,7 @@ use yii\helpers\Url;
?>
<div class="content_edit" id="post_edit_<?php echo $post->id; ?>">
<?php $form = CActiveForm::begin(['id' => 'post-edit-form_'+$post->id]); ?>
<?php $form = CActiveForm::begin(['id' => 'post-edit-form_' . $post->id]); ?>
<!-- create contenteditable div for HEditorWidget to place the data -->
<div id="post_input_<?php echo $post->id; ?>_contenteditable" class="form-control atwho-input"