Skip to content

Commit

Permalink
Merge pull request #1537 from katokaisya/dev-#1536
Browse files Browse the repository at this point in the history
fix #1536 コンテンツ編集画面のURL表示のリンクの箇所がエスケープされている問題を解決
  • Loading branch information
gondoh committed Sep 8, 2020
2 parents 9e6ffd2 + 1466d75 commit 2db4b81
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 2db4b81

Please sign in to comment.