mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-09 08:17:53 +08:00
Fix bad variable
This commit is contained in:
parent
0d96cd6692
commit
09cdc285ab
1 changed files with 2 additions and 2 deletions
|
@ -63,7 +63,7 @@ class ChangePasswordPostfixAdminDriver implements \RainLoop\Providers\ChangePass
|
||||||
private $oLogger = null;
|
private $oLogger = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $sHost
|
* @param string $sEngine
|
||||||
*
|
*
|
||||||
* @return \ChangePasswordPostfixAdminDriver
|
* @return \ChangePasswordPostfixAdminDriver
|
||||||
*/
|
*/
|
||||||
|
@ -232,7 +232,7 @@ class ChangePasswordPostfixAdminDriver implements \RainLoop\Providers\ChangePass
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
$sDsn = '';
|
$sDsn = '';
|
||||||
switch($sEngine){
|
switch($this->sEngine){
|
||||||
case 'MySQL':
|
case 'MySQL':
|
||||||
$sDsn = 'mysql:host='.$this->sHost.';port='.$this->iPort.';dbname='.$this->sDatabase;
|
$sDsn = 'mysql:host='.$this->sHost.';port='.$this->iPort.';dbname='.$this->sDatabase;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue