aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2012-11-16 21:05:23 +0100
committerAndreas Fischer <bantu@phpbb.com>2012-11-16 21:05:23 +0100
commit65dde648cab316fd0f0715f13d57ef45452398a3 (patch)
tree679eabdbfcba68e3708a70237c9bdfd3891295fa /phpBB
parent1a2dfa6d4c74a769212aab64f74b0be40dcbc60a (diff)
parentca09eb94e3e79ecae848e22b175f9a77b2e083af (diff)
downloadforums-65dde648cab316fd0f0715f13d57ef45452398a3.tar
forums-65dde648cab316fd0f0715f13d57ef45452398a3.tar.gz
forums-65dde648cab316fd0f0715f13d57ef45452398a3.tar.bz2
forums-65dde648cab316fd0f0715f13d57ef45452398a3.tar.xz
forums-65dde648cab316fd0f0715f13d57ef45452398a3.zip
Merge remote-tracking branch 'imkingdavid/ticket/11211' into develop
* imkingdavid/ticket/11211: [ticket/11211] Fix typo in phpbb_realpath() method name
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/di/extension/ext.php2
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');
}
}