summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Arthur <flowerysong00@yahoo.com>2012-11-08 14:42:48 -0500
committerPaul Arthur <flowerysong00@yahoo.com>2012-11-08 14:42:48 -0500
commit915b29c985fd0fe8b72698cda89462b757357992 (patch)
treedb8272b493398ca49c976a8d4553634282dd33d4
parent649298b24109c72ce664c744f4c7895d93bf987d (diff)
downloadampache-915b29c985fd0fe8b72698cda89462b757357992.tar.gz
ampache-915b29c985fd0fe8b72698cda89462b757357992.tar.bz2
ampache-915b29c985fd0fe8b72698cda89462b757357992.zip
check_database() -> Dba::check_database()
-rw-r--r--install.php2
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());
}