mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Reenable login forms for installs with multiple login mechanisms.
This commit is contained in:
parent
e88d187362
commit
cc5a86f75a
1 changed files with 8 additions and 3 deletions
|
@ -65,9 +65,14 @@ final class AphrontFormView extends AphrontView {
|
|||
public function render() {
|
||||
require_celerity_resource('aphront-form-view-css');
|
||||
|
||||
Javelin::initBehavior(
|
||||
'aphront-form-disable-on-submit',
|
||||
array());
|
||||
static $initialized_behavior;
|
||||
if (!$initialized_behavior) {
|
||||
// TODO: This is sort of a yucky hack.
|
||||
$initialized_behavior = true;
|
||||
Javelin::initBehavior(
|
||||
'aphront-form-disable-on-submit',
|
||||
array());
|
||||
}
|
||||
|
||||
return javelin_render_tag(
|
||||
'form',
|
||||
|
|
Loading…
Reference in a new issue