From 27485bc6441547555666e5d93a67b4026b4d7d11 Mon Sep 17 00:00:00 2001 From: Chad Little Date: Wed, 12 Mar 2014 11:26:43 -0700 Subject: [PATCH] Add type=submit to AphrontDialogView Summary: This is required for browsers <= IE7 Test Plan: Inspected HTML for type. Reviewers: epriestley Subscribers: aran, epriestley, Korvin Differential Revision: https://secure.phabricator.com/D8503 --- src/view/AphrontDialogView.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/view/AphrontDialogView.php b/src/view/AphrontDialogView.php index 4076106c95..559140f271 100644 --- a/src/view/AphrontDialogView.php +++ b/src/view/AphrontDialogView.php @@ -131,6 +131,7 @@ final class AphrontDialogView extends AphrontView { array( 'name' => '__submit__', 'sigil' => '__default__', + 'type' => 'submit', ), $this->submitButton); }