diff options
author | David King <imkingdavid@gmail.com> | 2012-11-16 14:38:53 -0500 |
---|---|---|
committer | David King <imkingdavid@gmail.com> | 2012-11-16 14:38:53 -0500 |
commit | ca09eb94e3e79ecae848e22b175f9a77b2e083af (patch) | |
tree | 679eabdbfcba68e3708a70237c9bdfd3891295fa /phpBB | |
parent | 1a2dfa6d4c74a769212aab64f74b0be40dcbc60a (diff) | |
download | forums-ca09eb94e3e79ecae848e22b175f9a77b2e083af.tar forums-ca09eb94e3e79ecae848e22b175f9a77b2e083af.tar.gz forums-ca09eb94e3e79ecae848e22b175f9a77b2e083af.tar.bz2 forums-ca09eb94e3e79ecae848e22b175f9a77b2e083af.tar.xz forums-ca09eb94e3e79ecae848e22b175f9a77b2e083af.zip |
[ticket/11211] Fix typo in phpbb_realpath() method name
PHPBB3-11211
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/di/extension/ext.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/di/extension/ext.php b/phpBB/includes/di/extension/ext.php index e76c543ee1..7d9b433751 100644 --- a/phpBB/includes/di/extension/ext.php +++ b/phpBB/includes/di/extension/ext.php @@ -49,7 +49,7 @@ class phpbb_di_extension_ext extends Extension { if (file_exists($path . '/config/services.yml')) { - $loader = new YamlFileLoader($container, new FileLocator(phpbb_real_path($path . '/config'))); + $loader = new YamlFileLoader($container, new FileLocator(phpbb_realpath($path . '/config'))); $loader->load('services.yml'); } } |