操作
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'); }
Yuya Watanabe さんが12年以上前に更新
- ステータス を Accepted(着手) から Pending Review(レビュー待ち) に変更
- 進捗率 を 0 から 50 に変更
Kousuke Ebihara さんが12年以上前に更新
- ステータス を Pending Review(レビュー待ち) から Pending Testing(テスト待ち) に変更
- 進捗率 を 50 から 70 に変更
Yuma Sakata さんが12年以上前に更新
- ステータス を Pending Testing(テスト待ち) から Fixed(完了) に変更
- 進捗率 を 70 から 100 に変更
テストOKです。
操作