diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2006-10-22 13:32:33 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-10-22 13:32:33 +0000 |
| commit | 22129be21f3d08a27681e0ac6ba8ad401ed8ba96 (patch) | |
| tree | 95b2aba768ebb29a024f96a804d9e4291b286d12 /phpBB/includes/functions.php | |
| parent | 44ea780de626a450e17154e5154f3becbd512476 (diff) | |
| download | forums-22129be21f3d08a27681e0ac6ba8ad401ed8ba96.tar forums-22129be21f3d08a27681e0ac6ba8ad401ed8ba96.tar.gz forums-22129be21f3d08a27681e0ac6ba8ad401ed8ba96.tar.bz2 forums-22129be21f3d08a27681e0ac6ba8ad401ed8ba96.tar.xz forums-22129be21f3d08a27681e0ac6ba8ad401ed8ba96.zip | |
- now username changes should work as desired
- removed some extract() calls
git-svn-id: file:///svn/phpbb/trunk@6517 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions.php')
| -rw-r--r-- | phpBB/includes/functions.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index b0d76fff4c..671f20d398 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -2249,7 +2249,7 @@ function generate_text_for_display($text, $uid, $bitfield, $flags) if (!class_exists('bbcode')) { global $phpbb_root_path, $phpEx; - include_once($phpbb_root_path . 'includes/bbcode.' . $phpEx); + include($phpbb_root_path . 'includes/bbcode.' . $phpEx); } if (empty($bbcode)) @@ -2287,7 +2287,7 @@ function generate_text_for_storage(&$text, &$uid, &$bitfield, &$flags, $allow_bb if (!class_exists('parse_message')) { - include_once($phpbb_root_path . 'includes/message_parser.' . $phpEx); + include($phpbb_root_path . 'includes/message_parser.' . $phpEx); } $message_parser = new parse_message($text); @@ -2419,7 +2419,7 @@ function parse_inline_attachments(&$text, &$attachments, &$update_count, $forum_ if (!function_exists('display_attachments')) { global $phpbb_root_path, $phpEx; - include_once("{$phpbb_root_path}includes/functions_display.$phpEx"); + include("{$phpbb_root_path}includes/functions_display.$phpEx"); } $attachments = display_attachments($forum_id, NULL, $attachments, $update_count, false, true); |
