From: Johannes Löthberg <[email protected]>
Signed-off-by: Johannes Löthberg <[email protected]>
Signed-off-by: Lukas Fleischer <[email protected]>
---
web/lib/confparser.inc.php | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/web/lib/confparser.inc.php b/web/lib/confparser.inc.php
index 790aa0e..db44b36 100644
--- a/web/lib/confparser.inc.php
+++ b/web/lib/confparser.inc.php
@@ -23,3 +23,10 @@ function config_get_bool($section, $key) {
$val = strtolower(config_get($section, $key));
return ($val == 'yes' || $val == 'true' || $val == '1');
}
+
+function config_section_exists($key) {
+ global $AUR_CONFIG;
+ config_load();
+
+ return array_key_exists($key, $AUR_CONFIG);
+}
--
2.4.3