diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-11-29 16:37:54 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-11-29 16:37:54 +0000 |
commit | 56fa0e31ad67ea337fd8c575ddf6e80094454eb8 (patch) | |
tree | 68b54029f1893d2bdb37b2add3f225f9ce518643 /lib/install.php | |
parent | 6a62135d6779832a64d7952ba1163838caf2e856 (diff) | |
download | ampache-56fa0e31ad67ea337fd8c575ddf6e80094454eb8.tar.gz ampache-56fa0e31ad67ea337fd8c575ddf6e80094454eb8.tar.bz2 ampache-56fa0e31ad67ea337fd8c575ddf6e80094454eb8.zip |
verify that they at least typed in the right db information, before creating the config file for them
Diffstat (limited to 'lib/install.php')
-rw-r--r-- | lib/install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/install.php b/lib/install.php index 965186f7..5602b348 100644 --- a/lib/install.php +++ b/lib/install.php @@ -132,7 +132,7 @@ function install_insert_db($username,$password,$hostname,$database) { $dbh = Dba::dbh(); if (!is_resource($dbh)) { - Error::add('general','Error: Unable to make Database Connection ' . mysql_error()); + Error::add('general',_('Error: Unable to make Database Connection') . mysql_error()); return false; } |