summaryrefslogtreecommitdiff
path: root/conf/plugins.conf
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2013-10-05 07:01:54 +0200
committerHaru <haru@dotalux.com>2013-10-05 07:01:54 +0200
commit62c5e65d28833c1068d195778c0e3a710acaa104 (patch)
treea8f19710375f669530d5640a14c1e3575dad32a0 /conf/plugins.conf
parentdedec165eaeb0d291279b1d5b53fac242bcf7b4c (diff)
downloadhercules-62c5e65d28833c1068d195778c0e3a710acaa104.tar.gz
hercules-62c5e65d28833c1068d195778c0e3a710acaa104.tar.bz2
hercules-62c5e65d28833c1068d195778c0e3a710acaa104.tar.xz
hercules-62c5e65d28833c1068d195778c0e3a710acaa104.zip
Added support for trailing commas within libconfig arrays
- A trailing comma in conf/plugins.conf will no longer cause a parse error. This makes it easier to comment out plugins to disable them. - conf/plugins.conf has been updated to reflect this change. Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'conf/plugins.conf')
-rw-r--r--conf/plugins.conf10
1 files changed, 5 insertions, 5 deletions
diff --git a/conf/plugins.conf b/conf/plugins.conf
index c88a4fb50..d9bd7e386 100644
--- a/conf/plugins.conf
+++ b/conf/plugins.conf
@@ -23,16 +23,16 @@ you need to put in a comma, to separate the plugins.
-----------------------------------------
plugins_list: [
"example",
- "other"
+ "other",
]
-----------------------------------------
Please note that your scripts need to be saved
in the .c (source code) extension and placed in the /src/plugin/ folder.
-----------------------------------------
*/
-plugins_list:[
- "HPMHooking"
+plugins_list: [
+ "HPMHooking",
//"db2sql",
//"sample",
- //"other"
-] \ No newline at end of file
+ //"other",
+]