1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +02:00

[ticket/10631] get_extension_metadata_manager -> create_extension_metadata_manager

PHPBB3-10631
This commit is contained in:
Nathan Guse
2012-07-23 20:40:54 -05:00
committed by Unknown Bliss
parent fd5ed30052
commit 747c16240f
2 changed files with 4 additions and 4 deletions

View File

@@ -131,7 +131,7 @@ class phpbb_extension_manager
* @param string $template The template manager
* @return phpbb_extension_metadata_manager Instance of the metadata manager
*/
public function get_extension_metadata_manager($name, phpbb_template $template)
public function create_extension_metadata_manager($name, phpbb_template $template)
{
return new phpbb_extension_metadata_manager($name, $this->db, $this, $this->phpbb_root_path, $this->php_ext, $template, $this->config);
}