summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2015-06-14 15:08:38 +0200
committerLukas Fleischer <lfleischer@archlinux.org>2015-06-14 17:58:56 +0200
commit9ef7de05698bb5fb82cb63894262a68156228fd1 (patch)
tree21944d6bf6c9e4d6acc7273f18df1f32320f7302
parent3bc44963280758f9e057943081e0b7a2f5541aff (diff)
downloadaurweb-9ef7de05698bb5fb82cb63894262a68156228fd1.tar.xz
confparser: Split loading of config into own function
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com> Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
-rw-r--r--web/lib/confparser.inc.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/web/lib/confparser.inc.php b/web/lib/confparser.inc.php
index 3977911..790aa0e 100644
--- a/web/lib/confparser.inc.php
+++ b/web/lib/confparser.inc.php
@@ -1,11 +1,16 @@
<?php
-function config_get($section, $key) {
+function config_load() {
global $AUR_CONFIG;
if (!isset($AUR_CONFIG)) {
$AUR_CONFIG = parse_ini_file("../../conf/config", true, INI_SCANNER_RAW);
}
+}
+
+function config_get($section, $key) {
+ global $AUR_CONFIG;
+ config_load();
return $AUR_CONFIG[$section][$key];
}