diff options
author | Igor Wiedler <igor@wiedler.ch> | 2011-07-09 23:33:44 +0200 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2011-07-10 00:30:50 +0200 |
commit | f7b06ca12db9da519d49ce334eaf96573d003c0f (patch) | |
tree | 30cf8c1e44e0ed92f57afd5f15c6ebff69bfeead /phpBB | |
parent | 1d26398faab3459e52dd951299df6e0a2fc66e7d (diff) | |
download | forums-f7b06ca12db9da519d49ce334eaf96573d003c0f.tar forums-f7b06ca12db9da519d49ce334eaf96573d003c0f.tar.gz forums-f7b06ca12db9da519d49ce334eaf96573d003c0f.tar.bz2 forums-f7b06ca12db9da519d49ce334eaf96573d003c0f.tar.xz forums-f7b06ca12db9da519d49ce334eaf96573d003c0f.zip |
[feature/template-engine] Move template.php to includes/template
This allows making use of autoloading.
PHPBB3-9726
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/common.php | 1 | ||||
-rw-r--r-- | phpBB/includes/template/template.php (renamed from phpBB/includes/template.php) | 0 | ||||
-rw-r--r-- | phpBB/install/database_update.php | 1 | ||||
-rw-r--r-- | phpBB/install/index.php | 1 |
4 files changed, 0 insertions, 3 deletions
diff --git a/phpBB/common.php b/phpBB/common.php index 46f78a7926..67fb5cf6ae 100644 --- a/phpBB/common.php +++ b/phpBB/common.php @@ -182,7 +182,6 @@ if (!empty($load_extensions) && function_exists('dl')) // Include files require($phpbb_root_path . 'includes/class_loader.' . $phpEx); -require($phpbb_root_path . 'includes/template.' . $phpEx); require($phpbb_root_path . 'includes/session.' . $phpEx); require($phpbb_root_path . 'includes/auth.' . $phpEx); diff --git a/phpBB/includes/template.php b/phpBB/includes/template/template.php index 935605b12a..935605b12a 100644 --- a/phpBB/includes/template.php +++ b/phpBB/includes/template/template.php diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 0d3e96f342..ca7ac8aad5 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -60,7 +60,6 @@ if (!empty($load_extensions) && function_exists('dl')) // Include files require($phpbb_root_path . 'includes/class_loader.' . $phpEx); -require($phpbb_root_path . 'includes/template.' . $phpEx); require($phpbb_root_path . 'includes/session.' . $phpEx); require($phpbb_root_path . 'includes/auth.' . $phpEx); diff --git a/phpBB/install/index.php b/phpBB/install/index.php index 6618e42ae8..15f8c670a4 100644 --- a/phpBB/install/index.php +++ b/phpBB/install/index.php @@ -162,7 +162,6 @@ if (file_exists($phpbb_root_path . 'includes/functions_content.' . $phpEx)) include($phpbb_root_path . 'includes/auth.' . $phpEx); include($phpbb_root_path . 'includes/session.' . $phpEx); -include($phpbb_root_path . 'includes/template.' . $phpEx); include($phpbb_root_path . 'includes/functions_admin.' . $phpEx); include($phpbb_root_path . 'includes/utf/utf_tools.' . $phpEx); require($phpbb_root_path . 'includes/functions_install.' . $phpEx); |