diff options
| author | erangamapa <erangamapa@gmail.com> | 2013-04-06 22:29:32 +0530 |
|---|---|---|
| committer | Dhruv <dhruv.goel92@gmail.com> | 2013-12-27 00:22:22 +0530 |
| commit | cca4067694137f32dd08705e239e62bd5b0980ee (patch) | |
| tree | 6fc09ae2cc978c361062413b2395fe278c4ee9f5 /phpBB/feed.php | |
| parent | 85861711872c0f9a9064e0043764f6c752a915d7 (diff) | |
| download | forums-cca4067694137f32dd08705e239e62bd5b0980ee.tar forums-cca4067694137f32dd08705e239e62bd5b0980ee.tar.gz forums-cca4067694137f32dd08705e239e62bd5b0980ee.tar.bz2 forums-cca4067694137f32dd08705e239e62bd5b0980ee.tar.xz forums-cca4067694137f32dd08705e239e62bd5b0980ee.zip | |
[ticket/11271] Removing unnecessary database object
Removed unnecessary global database object from 'feed_generate_content'
Method.
PHPBB3-11271
Diffstat (limited to 'phpBB/feed.php')
| -rw-r--r-- | phpBB/feed.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/feed.php b/phpBB/feed.php index 6a83bba562..1b854c1705 100644 --- a/phpBB/feed.php +++ b/phpBB/feed.php @@ -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)) { |
