Skip to content

Commit

Permalink
fix #1536 コンテンツ編集画面のURL表示のリンクの箇所がエスケープされている問題を解決
Browse files Browse the repository at this point in the history
  • Loading branch information
kato authored and gondoh committed Sep 9, 2020
1 parent d178525 commit 5f9a985
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
<?php echo $this->BcForm->error('Content.name') ?>
<?php echo $this->BcForm->error('Content.parent_id') ?>
<span class="bca-post__url">
<?php echo h($linkedFullUrl) ?>
<?php echo strip_tags($linkedFullUrl, '<a>') ?>
</span>
</td>
</tr>
Expand Down

0 comments on commit 5f9a985

Please sign in to comment.