summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorPaul Arthur <flowerysong00@yahoo.com>2012-11-08 13:15:19 -0500
committerPaul Arthur <flowerysong00@yahoo.com>2012-11-08 13:15:19 -0500
commitd2eaf10b072f8cb1dca887af2006eba00a3fc0fa (patch)
treec66320acdac0981575825de02608b867b65fdb7f /templates
parent0d78b77443481e3678d933c9590a4e2f7a4f90fa (diff)
downloadampache-d2eaf10b072f8cb1dca887af2006eba00a3fc0fa.tar.gz
ampache-d2eaf10b072f8cb1dca887af2006eba00a3fc0fa.tar.bz2
ampache-d2eaf10b072f8cb1dca887af2006eba00a3fc0fa.zip
Move check_database into the Dba class
Diffstat (limited to 'templates')
-rw-r--r--templates/show_test.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/show_test.inc.php b/templates/show_test.inc.php
index 3a8372ff..1094f52f 100644
--- a/templates/show_test.inc.php
+++ b/templates/show_test.inc.php
@@ -194,7 +194,7 @@
<td valign="top"><?php echo T_("Database connection"); ?></td>
<td valign="top">[
<?php
- $db = check_database($results['database_hostname'], $results['database_username'], $results['database_password'],$results['database_name']);
+ $db = Dba::check_database($results['database_hostname'], $results['database_username'], $results['database_password'],$results['database_name']);
if (!$db) {
echo debug_result('',false);
}