1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 20:13:22 +01:00

[ticket/11271] Removing unnecessary database object

Removed unnecessary global database object from 'feed_generate_content'
Method.

PHPBB3-11271
This commit is contained in:
erangamapa 2013-04-06 22:29:32 +05:30 committed by Dhruv
parent 8586171187
commit cca4067694

View File

@ -279,7 +279,7 @@ function feed_format_date($time)
**/
function feed_generate_content($content, $uid, $bitfield, $options, $forum_id, $post_attachments)
{
global $user, $db, $config, $phpbb_root_path, $phpEx, $board_url;
global $user, $config, $phpbb_root_path, $phpEx, $board_url;
if (empty($content))
{