mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
confparser.inc.php: Add missing dollar sign
Fixes a regression introduced in 97c5bce
(config: allow reading both the
defaults file and the modified config, 2018-04-15).
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
This commit is contained in:
parent
ad9422ca19
commit
5c48302aaf
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ function config_load() {
|
|||
}
|
||||
$defaults_path = getenv('AUR_CONFIG_DEFAULTS');
|
||||
if (!$defaults_path) {
|
||||
$defaults_path = path . ".defaults";
|
||||
$defaults_path = $path . ".defaults";
|
||||
}
|
||||
if (file_exists($defaults_path)) {
|
||||
$default_config = parse_ini_file($defaults_path, true, INI_SCANNER_RAW);
|
||||
|
|
Loading…
Add table
Reference in a new issue