操作
Bug(バグ) #1507
完了NotificationMailTable::fetchTemplateFromConfigSample() doesn't fetch template when template of specified culture is undefined in mail_template.yml (指定した言語のサンプルテンプレートが未定義の場合テンプレートが取得できない)
開始日:
2010-08-18
期日:
進捗率:
100%
予定工数:
3.6 で発生するか:
Yes
3.8 で発生するか:
Unknown (未調査)
説明
Overview¶
指定した言語のサンプルテンプレートが未定義の場合テンプレートが取得できない
NotificationMailTable::fetchTemplateFromConfigSample() doesn't fetch template when template of specified culture is undefined in mail_template.yml
Environment¶
- OpenPNE3.6beta3-dev
- OpenPNE3.7-dev
Causes¶
指定した言語のサンプルテンプレートが未定義の場合の取得が正しくない。
57 $sample = $config['sample'][0];
では取得できない。
Way to fix¶
57 $sample = current($config['sample']);
に変更。
Shogo Kawahara さんが約14年前に更新
- ステータス を New(新規) から Pending Review(レビュー待ち) に変更
- 進捗率 を 0 から 50 に変更
更新履歴 8be450e242bd759315ea0a5fff9633225b9be8d6 で適用されました。
Kousuke Ebihara さんが約14年前に更新
- ステータス を Pending Review(レビュー待ち) から Pending Testing(テスト待ち) に変更
- 進捗率 を 50 から 70 に変更
Fumie Toyooka さんが約13年前に更新
- ステータス を Pending Testing(テスト待ち) から Fixed(完了) に変更
- 進捗率 を 70 から 100 に変更
テスト無事完了。
操作