操作
Bug(バグ) #2862
完了携帯版のトピック検索ページの文言がSNS名称設定に対応していない
開始日:
2012-03-07
期日:
進捗率:
100%
予定工数:
3.6 で発生するか:
Yes (はい)
[QA]バグ通知済:
いいえ
3.8 で発生するか:
opCommunityTopicPlugin 絞込条件:
説明
概要¶
携帯版のトピック検索ページの文言がSNS名称設定に対応していない
原因¶
#270 「This plugin don't support sns term (SNS名称設定に対応していない)」の対応が不十分だった.
バックポート先で発覚.( https://redmine.openpne.jp/issues/2855#note-4 )
修正内容¶
diff --git a/apps/mobile_frontend/modules/communityTopic/templates/searchSuccess.php b/apps/mobile_frontend/modules/communityTopic/templates/searchSuccess.php index 0fdba55..18ea610 100644 --- a/apps/mobile_frontend/modules/communityTopic/templates/searchSuccess.php +++ b/apps/mobile_frontend/modules/communityTopic/templates/searchSuccess.php @@ -52,9 +52,9 @@ op_include_form('searchCommunityTopic', $form, $options); <?php if ($communityId) { - echo link_to(__('Community Top'), 'community/home?id='.$communityId); + echo link_to(__('%Community% Top'), 'community/home?id='.$communityId); } else { - echo link_to(__('Search Communities'), 'community/search'); + echo link_to(__('Search %Community%', array('%Community%' => $op_term['community']->pluralize())), 'community/search'); }
操作