From: Matthias Schmidt Date: Fri, 27 Sep 2013 15:37:42 +0000 (+0200) Subject: Adds database password mask X-Git-Tag: 2.0.0_Beta_10~15^2~3 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=3de0d940b7d36d5405882ca6903247ec4c60b316;p=GitHub%2FWoltLab%2FWCF.git Adds database password mask --- diff --git a/wcfsetup/install/files/lib/system/cli/command/ImportCLICommand.class.php b/wcfsetup/install/files/lib/system/cli/command/ImportCLICommand.class.php index ca4281ac52..f049b8fac7 100644 --- a/wcfsetup/install/files/lib/system/cli/command/ImportCLICommand.class.php +++ b/wcfsetup/install/files/lib/system/cli/command/ImportCLICommand.class.php @@ -210,7 +210,7 @@ class ImportCLICommand implements ICLICommand { if ($this->dbHost === null) exit; $this->dbUser = CLIWCF::getReader()->readLine(WCF::getLanguage()->get('wcf.acp.dataImport.configure.database.user').'> '); if ($this->dbUser === null) exit; - $this->dbPassword = CLIWCF::getReader()->readLine(WCF::getLanguage()->get('wcf.acp.dataImport.configure.database.password').'> '); + $this->dbPassword = CLIWCF::getReader()->readLine(WCF::getLanguage()->get('wcf.acp.dataImport.configure.database.password').'> ', '*'); if ($this->dbPassword === null) exit; $this->dbName = CLIWCF::getReader()->readLine(WCF::getLanguage()->get('wcf.acp.dataImport.configure.database.name').'> '); if ($this->dbName === null) exit;