Skip to content

Commit

Permalink
fixed default config path
Browse files Browse the repository at this point in the history
  • Loading branch information
janschumann committed Mar 18, 2015
1 parent b24d53c commit 45ca600
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dic.helper.inc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function _dic_get_helper($re_initialize = false) {
}
$environment = variable_get('dic_environment', 'prod');
$debug = (boolean) variable_get('dic_debug', 0);
$configDir = variable_get('dic_config_dir', '');
$configDir = variable_get('dic_config_dir', DRUPAL_ROOT . '/' . conf_path());
if ('' == $configDir) {
$configDir = DRUPAL_ROOT . '/sites/default';
}
Expand Down

0 comments on commit 45ca600

Please sign in to comment.