Backport(バックポート) #2730
Yuya Watanabe さんがほぼ13年前に更新
h3. 現象 携帯でフレンド申請メッセージのインフォメーションの通知の後ろに改行がないため、他の通知とあわせて一行で表示される h3. 原因 フレンド申請メッセージ h3. 原因 下記部分で改行タグが付与されていない. apps/mobile_frontend/modules/friend/templates/_cautionAboutFriendPre.php <pre> 1 <?php if ($sf_user->getMember()->countFriendPreTo()) : ?> 2 <font color="red"> 3 <?php 4 echo __('You\'ve gotten %1% %friend% requests', array( 5 '%1%' => $sf_user->getMember()->countFriendPreTo(), 6 )); 7 ?> 8 9 <?php echo link_to(__('Go to Confirmation Page'), '@confirmation_list?category=friend_confirm') ?> 10 </font> 11 <?php endif; ?> </pre> h3. 修正内容 改行タグを付与する. <pre> diff --git a/apps/mobile_frontend/modules/friend/templates/_cautionAboutFriendPre.php b/apps/mobile_frontend/modules/friend/templates/_cautionAboutFriendPre.php index f14326d..2bf59f4 100644 --- a/apps/mobile_frontend/modules/friend/templates/_cautionAboutFriendPre.php +++ b/apps/mobile_frontend/modules/friend/templates/_cautionAboutFriendPre.php @@ -7,5 +7,5 @@ echo __('You\'ve gotten %1% %friend% requests', array( ?> <?php echo link_to(__('Go to Confirmation Page'), '@confirmation_list?category=friend_confirm') ?> -</font> +</font><br> <?php endif; ?> </pre>