操作
Bug(バグ) #1129
完了Warning error is occured when user's culture has no translation dictionary (e.g. English) (英語などの翻訳用の辞書ファイルがない言語を選択している場合にWarningエラーが発生する)
開始日:
2010-06-02
期日:
進捗率:
100%
予定工数:
3.6 で発生するか:
3.8 で発生するか:
説明
Overview (現象)¶
When user's culture has no translation dictionary (e.g. English), PHP warning error is occured.
英語などの翻訳用の辞書ファイルがない言語をユーザが選択している場合に、PHP の Warning エラーが発生する。
Notice: Undefined index: messages in /path/to/openpne/lib/vendor/symfony/lib/i18n/sfMessageFormat.class.php on line 195 Warning: Invalid argument supplied for foreach() in /path/to/openpne/lib/vendor/symfony/lib/i18n/sfMessageFormat.class.php on line 195
Causes (原因)¶
sfMessageSource_OpenPNECached::load() は sfMessageSource::load() のコメントにある通り、常に true を返す必要があるが、翻訳ファイルが存在しない場合に false を返す実装となっていたため。
Way to fix (修正内容)¶
sfMessageSource_OpenPNECached::load() で常に true を返すようにする。
操作