From 649298b24109c72ce664c744f4c7895d93bf987d Mon Sep 17 00:00:00 2001 From: Paul Arthur Date: Thu, 8 Nov 2012 14:28:27 -0500 Subject: Clean up remaining direct calls to mysql functions This makes it theoretically possible to replace Dba with a different implementation somewhat painlessly. --- templates/show_install_check.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'templates') diff --git a/templates/show_install_check.inc.php b/templates/show_install_check.inc.php index f405aa55..05428f16 100644 --- a/templates/show_install_check.inc.php +++ b/templates/show_install_check.inc.php @@ -88,7 +88,7 @@ Error::add('install', T_('PHP MySQL Support')); } else { - echo debug_result(mysql_get_client_info(),true); + echo debug_result(Dba::get_client_info(), true); } ?> -- cgit