aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/template
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2011-08-13 23:47:24 -0400
committerOleg Pudeyev <oleg@bsdpower.com>2011-08-13 23:49:54 -0400
commit41de09e408bc314c3020084fb7c5ec4a4c7262b5 (patch)
treee68aaa95633068eb745aec06e32f58faed0082bc /phpBB/includes/template
parent7cfd4052c5a9f7f6caabd9a1fc734d7b9e838dcd (diff)
downloadforums-41de09e408bc314c3020084fb7c5ec4a4c7262b5.tar
forums-41de09e408bc314c3020084fb7c5ec4a4c7262b5.tar.gz
forums-41de09e408bc314c3020084fb7c5ec4a4c7262b5.tar.bz2
forums-41de09e408bc314c3020084fb7c5ec4a4c7262b5.tar.xz
forums-41de09e408bc314c3020084fb7c5ec4a4c7262b5.zip
[feature/template-engine] Delete _get_locator function.
It is no longer needed as locator is injected into template. PHPBB3-9726
Diffstat (limited to 'phpBB/includes/template')
-rw-r--r--phpBB/includes/template/template.php13
1 files changed, 0 insertions, 13 deletions
diff --git a/phpBB/includes/template/template.php b/phpBB/includes/template/template.php
index 4bca813971..4007b77db8 100644
--- a/phpBB/includes/template/template.php
+++ b/phpBB/includes/template/template.php
@@ -488,17 +488,4 @@ class phpbb_template
}
include($file);
}
-
- /**
- * Retrieves the template locator object.
- *
- * This function is public for the benefit of bbcode implementation.
- * It should not be considered part of template class's public API.
- *
- * @return phpbb_template_locator Template locator for this template
- */
- public function _get_locator()
- {
- return $this->locator;
- }
}