From: Nils A. <nad...@ph...> - 2009-07-26 11:34:30
|
Author: naderman Date: Sun Jul 26 12:34:11 2009 New Revision: 9857 Log: correctly add the install_id to the data Modified: branches/phpBB-3_0_0/phpBB/includes/acp/acp_send_statistics.php Modified: branches/phpBB-3_0_0/phpBB/includes/acp/acp_send_statistics.php ============================================================================== *** branches/phpBB-3_0_0/phpBB/includes/acp/acp_send_statistics.php (original) --- branches/phpBB-3_0_0/phpBB/includes/acp/acp_send_statistics.php Sun Jul 26 12:34:11 2009 *************** *** 61,66 **** --- 61,71 ---- foreach ($raw as $provider => $data) { + if ($provider == 'install_id') + { + $data = array($provider => $data); + } + $template->assign_block_vars('providers', array( 'NAME' => htmlspecialchars($provider), )); |