操作
Enhancement(機能追加・改善) #218
未完了ログインフォームをinput type=textにして欲しい
開始日:
2009-10-08
期日:
進捗率:
0%
予定工数:
説明
以前のチケットは http://trac.openpne.jp/ticket/4334 です
http://sns.openpne.jp/?m=pc&a=page_fh_diary&target_c_diary_id=22008より転記 {{{ DoCoMo端末からOpenPNE3にログインする際のパスワード入力が input type=password のため、一部機種からの使用が困難です。 結構新しい機種でも難しい事があるので、type=textが妥当なのでしょうか opAuthLoginForm.class.php でこんな感じかもしれません。 if (($mobile = opMobileUserAgent::getInstance()->getMobile()) && $mobile->isDoCoMo()) { $this->setWidgets(array( 'login_id' => new sfWidgetFormInput(), 'password' => new sfWidgetFormInput(), )); } else { $this->setWidgets(array( 'login_id' => new sfWidgetFormInput(), 'password' => new sfWidgetFormInputPassword(), )); } }}}
操作