From: Meik S. <acy...@ph...> - 2009-09-15 12:59:08
|
Author: acydburn Date: Tue Sep 15 13:58:23 2009 New Revision: 10146 Log: fix uninitialised variable in functions_admin.php (Bug #51295) Modified: branches/phpBB-3_0_0/phpBB/includes/functions_admin.php Modified: branches/phpBB-3_0_0/phpBB/includes/functions_admin.php ============================================================================== *** branches/phpBB-3_0_0/phpBB/includes/functions_admin.php (original) --- branches/phpBB-3_0_0/phpBB/includes/functions_admin.php Tue Sep 15 13:58:23 2009 *************** *** 2514,2519 **** --- 2514,2520 ---- case 'mod': $log_type = LOG_MOD; + $sql_forum = ''; if ($topic_id) { |