diff options
| author | Andreas Fischer <bantu@phpbb.com> | 2011-05-05 19:59:11 +0200 |
|---|---|---|
| committer | Andreas Fischer <bantu@phpbb.com> | 2011-05-05 19:59:11 +0200 |
| commit | 6a3f34ae61287e8390ed22fa118c134f7102346b (patch) | |
| tree | f102203bc45e9678f291004e2dad1f4fb45d4948 /phpBB/includes/functions_posting.php | |
| parent | 680c3fde4833c662f0a2a26e0f1930cd99795fb2 (diff) | |
| parent | 820f22f784d55edf22db5f065cba739308b37ed2 (diff) | |
| download | forums-6a3f34ae61287e8390ed22fa118c134f7102346b.tar forums-6a3f34ae61287e8390ed22fa118c134f7102346b.tar.gz forums-6a3f34ae61287e8390ed22fa118c134f7102346b.tar.bz2 forums-6a3f34ae61287e8390ed22fa118c134f7102346b.tar.xz forums-6a3f34ae61287e8390ed22fa118c134f7102346b.zip | |
Merge remote-tracking branch 'p/ticket/9693' into develop
* p/ticket/9693:
[ticket/9693] Removed useless $auth globalizations.
Diffstat (limited to 'phpBB/includes/functions_posting.php')
| -rw-r--r-- | phpBB/includes/functions_posting.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php index 0bb0ef8722..7630e05695 100644 --- a/phpBB/includes/functions_posting.php +++ b/phpBB/includes/functions_posting.php @@ -21,7 +21,7 @@ if (!defined('IN_PHPBB')) */ function generate_smilies($mode, $forum_id) { - global $auth, $db, $user, $config, $template; + global $db, $user, $config, $template; global $phpEx, $phpbb_root_path; $start = request_var('start', 0); @@ -803,7 +803,7 @@ function posting_gen_inline_attachments(&$attachment_data) */ function posting_gen_attachment_entry($attachment_data, &$filename_data, $show_attach_box = true) { - global $template, $config, $phpbb_root_path, $phpEx, $user, $auth; + global $template, $config, $phpbb_root_path, $phpEx, $user; // Some default template variables $template->assign_vars(array( |
