diff options
author | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-07-26 13:23:33 -0500 |
---|---|---|
committer | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-07-26 13:23:33 -0500 |
commit | 9573b36b3278aa374a7ea4fa72e6a81c459623b2 (patch) | |
tree | f3bf7592ac48b725ef13ffa8a950547c6f51fc34 /tests/notification/group_request_test.php | |
parent | 03ff0581e0b6397e3cf194f0b021aae732cfccfd (diff) | |
download | forums-9573b36b3278aa374a7ea4fa72e6a81c459623b2.tar forums-9573b36b3278aa374a7ea4fa72e6a81c459623b2.tar.gz forums-9573b36b3278aa374a7ea4fa72e6a81c459623b2.tar.bz2 forums-9573b36b3278aa374a7ea4fa72e6a81c459623b2.tar.xz forums-9573b36b3278aa374a7ea4fa72e6a81c459623b2.zip |
[ticket/11744] Include once
PHPBB3-11744
Diffstat (limited to 'tests/notification/group_request_test.php')
-rw-r--r-- | tests/notification/group_request_test.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/notification/group_request_test.php b/tests/notification/group_request_test.php index 25c5406000..dffdc771b1 100644 --- a/tests/notification/group_request_test.php +++ b/tests/notification/group_request_test.php @@ -30,9 +30,9 @@ class phpbb_notification_group_request_test extends phpbb_tests_notification_bas { global $phpbb_root_path, $phpEx, $phpbb_dispatcher, $phpbb_log; - include($phpbb_root_path . 'includes/utf/utf_tools.' . $phpEx); - include($phpbb_root_path . 'includes/functions_user.' . $phpEx); - include($phpbb_root_path . 'includes/functions_content.' . $phpEx); + include_once($phpbb_root_path . 'includes/utf/utf_tools.' . $phpEx); + include_once($phpbb_root_path . 'includes/functions_user.' . $phpEx); + include_once($phpbb_root_path . 'includes/functions_content.' . $phpEx); set_config(false, false, false, $this->config); |