diff options
author | Lukas Fleischer <lfleischer@archlinux.org> | 2018-05-12 12:25:21 +0200 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2018-05-12 12:25:21 +0200 |
commit | ad9422ca19d29089ab934e079c65a4614ace26a1 (patch) | |
tree | 483a1653a1073ddc736d35d9cfbd5945ce3f705d | |
parent | 0ffa0679d214016511d07509774fcab5f3c56687 (diff) | |
download | aur-ad9422ca19d29089ab934e079c65a4614ace26a1.tar.gz aur-ad9422ca19d29089ab934e079c65a4614ace26a1.tar.xz |
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>
-rw-r--r-- | web/lib/confparser.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/lib/confparser.inc.php b/web/lib/confparser.inc.php index 29f17e83..cb51e02a 100644 --- a/web/lib/confparser.inc.php +++ b/web/lib/confparser.inc.php @@ -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); } } |