diff options
author | Paul Arthur <flowerysong00@yahoo.com> | 2012-11-08 14:42:48 -0500 |
---|---|---|
committer | Paul Arthur <flowerysong00@yahoo.com> | 2012-11-08 14:42:48 -0500 |
commit | 915b29c985fd0fe8b72698cda89462b757357992 (patch) | |
tree | db8272b493398ca49c976a8d4553634282dd33d4 | |
parent | 649298b24109c72ce664c744f4c7895d93bf987d (diff) | |
download | ampache-915b29c985fd0fe8b72698cda89462b757357992.tar.gz ampache-915b29c985fd0fe8b72698cda89462b757357992.tar.bz2 ampache-915b29c985fd0fe8b72698cda89462b757357992.zip |
check_database() -> Dba::check_database()
-rw-r--r-- | install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install.php b/install.php index 00dd698b..f284320c 100644 --- a/install.php +++ b/install.php @@ -92,7 +92,7 @@ switch ($_REQUEST['action']) { 'database_hostname' => $hostname ), true ); - if (!check_database()) { + if (!Dba::check_database()) { Error::add('config', T_('Error: Unable to make Database Connection: ') . Dba::error()); } |