diff options
author | Senky <jakubsenko@gmail.com> | 2012-08-15 13:29:41 +0200 |
---|---|---|
committer | Senky <jakubsenko@gmail.com> | 2013-05-20 18:39:44 +0200 |
commit | 49c1e0e3480d92f3b29c323c8441550a6f8aec5b (patch) | |
tree | 40b3400514400d6c8c55fb70bd59352d10e64eb6 /phpBB/install | |
parent | 4fe7ba5daf16abdb50297b60398aaed1b9d9edce (diff) | |
download | forums-49c1e0e3480d92f3b29c323c8441550a6f8aec5b.tar forums-49c1e0e3480d92f3b29c323c8441550a6f8aec5b.tar.gz forums-49c1e0e3480d92f3b29c323c8441550a6f8aec5b.tar.bz2 forums-49c1e0e3480d92f3b29c323c8441550a6f8aec5b.tar.xz forums-49c1e0e3480d92f3b29c323c8441550a6f8aec5b.zip |
[ticket/11010] adding type="number" in ACP; adding type="email" in install
PHPBB3-11010
Diffstat (limited to 'phpBB/install')
-rw-r--r-- | phpBB/install/install_install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php index f4fd64bc2e..5bf3f572d9 100644 --- a/phpBB/install/install_install.php +++ b/phpBB/install/install_install.php @@ -1977,7 +1977,7 @@ class install_install extends module 'admin_name' => array('lang' => 'ADMIN_USERNAME', 'type' => 'text:25:100', 'explain' => true), 'admin_pass1' => array('lang' => 'ADMIN_PASSWORD', 'type' => 'password:25:100', 'explain' => true), 'admin_pass2' => array('lang' => 'ADMIN_PASSWORD_CONFIRM', 'type' => 'password:25:100', 'explain' => false), - 'board_email' => array('lang' => 'CONTACT_EMAIL', 'type' => 'text:25:100', 'explain' => false), + 'board_email' => array('lang' => 'CONTACT_EMAIL', 'type' => 'email:25:100', 'explain' => false), ); var $advanced_config_options = array( 'legend1' => 'ACP_EMAIL_SETTINGS', |