diff options
Diffstat (limited to 'phpBB/phpbb/install/helper/iohandler/cli_iohandler.php')
| -rw-r--r-- | phpBB/phpbb/install/helper/iohandler/cli_iohandler.php | 14 | 
1 files changed, 14 insertions, 0 deletions
diff --git a/phpBB/phpbb/install/helper/iohandler/cli_iohandler.php b/phpBB/phpbb/install/helper/iohandler/cli_iohandler.php index 196cdcdaab..4117a3dfd3 100644 --- a/phpBB/phpbb/install/helper/iohandler/cli_iohandler.php +++ b/phpBB/phpbb/install/helper/iohandler/cli_iohandler.php @@ -74,6 +74,20 @@ class cli_iohandler extends iohandler_base  		return $result;  	} +	/** +	 * {@inheritdoc} +	 */ +	public function get_raw_input($name, $default) +	{ +		return $this->get_input($name, $default, true); +	} + +	/** +	 * Set input variable +	 * +	 * @param string $name Name of input variable +	 * @param mixed $value Value of input variable +	 */  	public function set_input($name, $value)  	{  		$this->input_values[$name] = $value;  | 
