summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorPaul Arthur <paul.arthur@flowerysong.com>2013-02-03 11:31:50 -0500
committerPaul Arthur <paul.arthur@flowerysong.com>2013-02-03 11:31:50 -0500
commit172be3b9091181a5eec3eb7aa5385ef2941ee000 (patch)
treece316252e178f87e27cc5bb154d681a933aa23e2 /templates
parentd8e9d73608b8c98776b02fadd94aab314d5abb4f (diff)
downloadampache-172be3b9091181a5eec3eb7aa5385ef2941ee000.tar.gz
ampache-172be3b9091181a5eec3eb7aa5385ef2941ee000.tar.bz2
ampache-172be3b9091181a5eec3eb7aa5385ef2941ee000.zip
Fix missed function call renames
Diffstat (limited to 'templates')
-rw-r--r--templates/show_test_table.inc.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/show_test_table.inc.php b/templates/show_test_table.inc.php
index 7816a41e..8fb1951e 100644
--- a/templates/show_test_table.inc.php
+++ b/templates/show_test_table.inc.php
@@ -149,7 +149,7 @@ if (!defined('INSTALL')) {
<tr>
<td valign="top"><?php echo T_("Database connection"); ?></td>
<td valign="top">
- <?php echo debug_result(check_pdo() && Dba::check_database()); ?>
+ <?php echo debug_result(check_php_pdo() && Dba::check_database()); ?>
</td>
<td>
<?php echo T_('This attempts to connect to your database using the values read from your configuration file.'); ?>
@@ -158,7 +158,7 @@ if (!defined('INSTALL')) {
<tr>
<td valign="top"><?php echo T_('Database tables'); ?></td>
<td valign="top">
- <?php echo debug_result(check_pdo() && Dba::check_database_inserted()); ?>
+ <?php echo debug_result(check_php_pdo() && Dba::check_database_inserted()); ?>
</td>
<td>
<?php echo T_('This checks a few key tables to make sure that you have successfully inserted the Ampache database and that the user has access to the database'); ?>