Skip to content
Snippets Groups Projects
Commit a01fcf04 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Support blank strings in modopts.ini

Use the new "blanks" option with File.iniGetAllObjects().
This means that keys specified in the modopts.ini with no value
will now be represented as blank strings ("") instead of undefined values,
in JS modules.
parent 6d6451c8
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,7 @@ function get_mod_options(modname, optname, default_optval)
if(optname) // Get a specific option value (optionally, with default value)
val = ini_file.iniGetValue(modname, optname, default_optval);
else // Get all options
val = ini_file.iniGetObject(modname);
val = ini_file.iniGetObject(modname, /* lowercase */false, /* blanks: */true);
ini_file.close();
return val;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment