[PATCH 1/2] confparser.inc.php: Add missing semicolon
Lukas Fleischer
lfleischer at archlinux.org
Sat May 12 10:28:17 UTC 2018
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 at archlinux.org>
---
web/lib/confparser.inc.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/web/lib/confparser.inc.php b/web/lib/confparser.inc.php
index 29f17e8..cb51e02 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);
}
}
--
2.17.0
More information about the aur-dev
mailing list