confparser.inc.php: Add missing semicolon

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:
Lukas Fleischer 2018-05-12 12:25:21 +02:00
parent 0ffa0679d2
commit ad9422ca19

View file

@ -22,7 +22,7 @@ function config_load() {
} else {
die("aurweb config file not found");
}
$AUR_CONFIG = array_replace_recursive($default_config, $config)
$AUR_CONFIG = array_replace_recursive($default_config, $config);
}
}