操作
Backport(バックポート) #1044
完了"CAPTCHA" display in the member config and etc. in the environment of mobile. (CAPTCHAがモバイル環境で表示されている)
開始日:
2010-05-11
期日:
進捗率:
100%
予定工数:
説明
Overview (現象)¶
"CAPTCHA" display in the member config and etc. in the environment of mobile.
(CAPTCHAがモバイル環境で表示されている)
Environment (環境)¶
- OpenPNE3.4.x
- OpenPNE3.5.x-dev
Causes (原因)¶
- web/index.php loads configuration for PC first, execute pc_frontendConfiguration::configure() and it enables CAPTCHA (web/index.php は 先にPCの設定をロードするために pc_frontendConfiguration::configure() が実行され、CAPTCHAが有効になる。)
sfConfig::set('op_is_use_captcha', true);
- after doing it, opExecutionFilter::handleAction() loads from configuration database (その後、opExecutionFilter::handleAction() で、上記の設定が存在していた場合 データベースの設定がロードされる。)
Way to fix (修正内容)¶
Changed to load opMobileUserAgent and decide application directly (web/index.php 内で直接 opMobileUserAgent を読みこみ、使用するべきアプリケーションを決定するように修正。)
操作