aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/template/template.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/template/template.php')
-rw-r--r--phpBB/includes/template/template.php16
1 files changed, 1 insertions, 15 deletions
diff --git a/phpBB/includes/template/template.php b/phpBB/includes/template/template.php
index 5d3ce4c82b..9e44c5609b 100644
--- a/phpBB/includes/template/template.php
+++ b/phpBB/includes/template/template.php
@@ -508,22 +508,8 @@ class phpbb_template
*/
public function locate($files, $return_default = false, $return_full_path = true)
{
- // add template path prefix
- $templates = array();
- if (is_string($files))
- {
- $templates[] = $this->template_path . $files;
- }
- else
- {
- foreach ($files as $file)
- {
- $templates[] = $this->template_path . $file;
- }
- }
-
// use resource locator to find files
- return $this->locator->get_first_file_location($templates, $return_default, $return_full_path);
+ return $this->locator->get_first_template_location($files, $return_default, $return_full_path);
}
/**