Commit 812d1aa4 authored by Ad Schellevis's avatar Ad Schellevis

fix for alias issues (global not being set)

parent bc160108
......@@ -58,11 +58,15 @@ function parse_config()
}
}
/* make alias table (for faster lookups) */
alias_make_table($config);
// return config data as array, use old "listags" construction to mark certain elements as array (even if they're not recurring)
return $cnf->toArray(listtags());
$config=$cnf->toArray(listtags());
/* make alias table (for faster lookups) */
alias_make_table($config);
return $config;
}
/****f* config/convert_config
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment