load helpers after config and meta have been processed

This commit is contained in:
nuex 2011-11-09 21:07:13 -05:00
parent 4e3787362e
commit 05222e0a70
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ action == "meta" {
# Done processing meta
# Since data is loaded now, load the helpers
action != "meta" && helpers_loaded == "no" && helpers == "yes" {
action != "meta" && action != "config" && helpers_loaded == "no" && helpers == "yes" {
load_helpers()
helpers_loaded = "yes"
}