diff options
Diffstat (limited to 'phpBB/phpbb/install/helper')
| -rw-r--r-- | phpBB/phpbb/install/helper/iohandler/ajax_iohandler.php | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/phpBB/phpbb/install/helper/iohandler/ajax_iohandler.php b/phpBB/phpbb/install/helper/iohandler/ajax_iohandler.php index a40d457466..bce0149890 100644 --- a/phpBB/phpbb/install/helper/iohandler/ajax_iohandler.php +++ b/phpBB/phpbb/install/helper/iohandler/ajax_iohandler.php @@ -186,6 +186,7 @@ class ajax_iohandler extends iohandler_base  			$tpl_ary['TITLE'] = $this->language->lang($input_options['label']);  			$tpl_ary['KEY'] = $input_name;  			$tpl_ary['S_EXPLAIN'] = false; +			$tpl_ary['DISABLED'] = isset($input_options['disabled']) ? $input_options['disabled'] : false;  			if (isset($input_options['default']))  			{ @@ -219,6 +220,11 @@ class ajax_iohandler extends iohandler_base  		$this->template->assign_var('S_NOT_ONLY_BUTTON_FORM', $not_button_form); +		if (!$not_button_form) +		{ +			$this->template->destroy_block_vars('options'); +		} +  		$this->template->set_filenames(array(  			'form_install' => 'installer_form.html',  		)); | 
