1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-11 03:04:09 +02:00

[ticket/11574] Add trailing slash for consistency

PHPBB3-11574
This commit is contained in:
Igor Wiedler
2013-07-14 01:28:49 -04:00
parent c96f8936c9
commit e6e2a50062
2 changed files with 2 additions and 2 deletions

View File

@@ -123,7 +123,7 @@ $phpbb_class_loader->register();
// Set up container (must be done here because extensions table may not exist)
$other_config_path = $phpbb_root_path . 'install/update/new/config/';
$config_path = file_exists($other_config_path . 'services.yml') ? $other_config_path : $phpbb_root_path . 'config';
$config_path = file_exists($other_config_path . 'services.yml') ? $other_config_path : $phpbb_root_path . 'config/';
$container_extensions = array(
new phpbb_di_extension_config($phpbb_root_path . 'config.' . $phpEx),