diff options
| author | Ted Trask <ttrask01@yahoo.com> | 2013-10-29 01:59:17 +0000 |
|---|---|---|
| committer | Ted Trask <ttrask01@yahoo.com> | 2013-10-29 01:59:17 +0000 |
| commit | b77ebffa01cdadc15cccb42d989ee3cb7704a007 (patch) | |
| tree | 0b2b30fbad630adbed9e6e9117f35a151c146bd2 | |
| parent | 926e8772a105f59383c0620fc45643806f8f5590 (diff) | |
| download | acf-lib-b77ebffa01cdadc15cccb42d989ee3cb7704a007.tar.bz2 acf-lib-b77ebffa01cdadc15cccb42d989ee3cb7704a007.tar.xz | |
Fix bug due to recursion in html.lua generic_input
| -rw-r--r-- | html.lua | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -74,7 +74,8 @@ end etc. ]]-- -local generic_input = function ( field_type, v ) +local generic_input +generic_input = function ( field_type, v ) if type(v.value) == "table" then ret = {} local vals = v.value |
