diff options
author | Vjacheslav Trushkin <arty@phpbb.com> | 2012-04-01 20:29:03 +0300 |
---|---|---|
committer | Vjacheslav Trushkin <arty@phpbb.com> | 2012-04-01 20:29:03 +0300 |
commit | 1ffc7c1fab85b1eb732b31bfd8a0f48c7351e68a (patch) | |
tree | 8d61748b6b9db1891ea7881bd86f09b75c8c6f09 | |
parent | fb0df8d2e398a634457b317a721734e53596f002 (diff) | |
download | forums-1ffc7c1fab85b1eb732b31bfd8a0f48c7351e68a.tar forums-1ffc7c1fab85b1eb732b31bfd8a0f48c7351e68a.tar.gz forums-1ffc7c1fab85b1eb732b31bfd8a0f48c7351e68a.tar.bz2 forums-1ffc7c1fab85b1eb732b31bfd8a0f48c7351e68a.tar.xz forums-1ffc7c1fab85b1eb732b31bfd8a0f48c7351e68a.zip |
[ticket/10665] Changing template->_js_include to public
Changing template->_js_include to public function
PHPBB3-10665
-rw-r--r-- | phpBB/includes/style/template.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/style/template.php b/phpBB/includes/style/template.php index 4586e8dbf9..3f15355f7a 100644 --- a/phpBB/includes/style/template.php +++ b/phpBB/includes/style/template.php @@ -499,7 +499,7 @@ class phpbb_style_template * @param string $file file name * @param bool $locate True if file needs to be located */ - function _js_include($file, $locate = false) + public function _js_include($file, $locate = false) { // Locate file if ($locate) |