Revision 1e45d13f
Added by Christian McDonald over 2 years ago
src/etc/inc/gwlb.inc | ||
---|---|---|
1687 | 1687 |
global $config; |
1688 | 1688 |
|
1689 | 1689 |
if (is_array($config['gateways']['gateway_group'])) { |
1690 |
$groups = $config['gateways']['gateway_group'];
|
|
1690 |
$groups = config_get_path('gateways/gateway_group');
|
|
1691 | 1691 |
} else { |
1692 | 1692 |
return false; |
1693 | 1693 |
} |
... | ... | |
1715 | 1715 |
global $config; |
1716 | 1716 |
|
1717 | 1717 |
if (is_array($config['gateways']['gateway_group'])) { |
1718 |
$groups = $config['gateways']['gateway_group'];
|
|
1718 |
$groups = config_get_path('gateways/gateway_group');
|
|
1719 | 1719 |
} else { |
1720 | 1720 |
return false; |
1721 | 1721 |
} |
Also available in: Unified diff
Rector some direct config gets with pure scalar paths.