aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_container.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-03-03 20:30:54 +0100
committerJoas Schilling <nickvergessen@gmx.de>2013-03-03 20:30:54 +0100
commite0328814f30d51bfac45e9c66d17b29478addd79 (patch)
treec4c08f870821dc62e717f73dbb06ca2f0412ab62 /phpBB/includes/functions_container.php
parent46c4ff46e00e4f050a5c987027a4b05e72456162 (diff)
downloadforums-e0328814f30d51bfac45e9c66d17b29478addd79.tar
forums-e0328814f30d51bfac45e9c66d17b29478addd79.tar.gz
forums-e0328814f30d51bfac45e9c66d17b29478addd79.tar.bz2
forums-e0328814f30d51bfac45e9c66d17b29478addd79.tar.xz
forums-e0328814f30d51bfac45e9c66d17b29478addd79.zip
[ticket/10714] Use $phpbb_adm_relative_path instead of hardcoded adm/
PHPBB3-10714
Diffstat (limited to 'phpBB/includes/functions_container.php')
-rw-r--r--phpBB/includes/functions_container.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_container.php b/phpBB/includes/functions_container.php
index 36c5ad507e..106b7d75cc 100644
--- a/phpBB/includes/functions_container.php
+++ b/phpBB/includes/functions_container.php
@@ -57,7 +57,7 @@ function phpbb_create_install_container($phpbb_root_path, $php_ext)
$container = phpbb_create_container(array($core), $phpbb_root_path, $php_ext);
$container->setParameter('core.root_path', $phpbb_root_path);
- $container->setParameter('core.adm_relative_path', 'adm/');
+ $container->setParameter('core.adm_relative_path', $phpbb_adm_relative_path);
$container->setParameter('core.php_ext', $php_ext);
$container->setParameter('core.table_prefix', '');