diff options
Diffstat (limited to 'engine')
| -rw-r--r-- | engine/lib/database.php | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/engine/lib/database.php b/engine/lib/database.php index 55ff021e5..69f6f4c0f 100644 --- a/engine/lib/database.php +++ b/engine/lib/database.php @@ -48,7 +48,7 @@  		    // Connect to database
  		        if (!$dblink[$dblinkname] = mysql_connect($CONFIG->dbhost, $CONFIG->dbuser, $CONFIG->dbpass, true))
 -		        	throw new DatabaseException(elgg_echo('DatabaseException:WrongCredentials'));
 +		        	throw new DatabaseException(sprintf(elgg_echo('DatabaseException:WrongCredentials'), $CONFIG->dbuser, $CONFIG->dbhost, $CONFIG->debug ? $CONFIG->dbpass : "****"));
  		        if (!mysql_select_db($CONFIG->dbname, $dblink[$dblinkname]))
  		        	throw new DatabaseException(sprintf(elgg_echo('DatabaseException:NoConnect'), $CONFIG->dbname));
 | 
