diff options
author | Ted Trask <ttrask01@yahoo.com> | 2011-12-08 21:44:08 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2011-12-08 21:44:08 +0000 |
commit | 61444c20122bd7b91ffaf568a2bcf69cc36fd63e (patch) | |
tree | f9f48028cf87a7131b8278d84c2b0bee712f6614 | |
parent | 4cb78def28059362550aa64b8c7154cc838aea75 (diff) | |
download | acf-core-61444c20122bd7b91ffaf568a2bcf69cc36fd63e.tar.bz2 acf-core-61444c20122bd7b91ffaf568a2bcf69cc36fd63e.tar.xz |
Fixed bug in display of boolean default
-rw-r--r-- | lib/viewfunctions.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/viewfunctions.lua b/lib/viewfunctions.lua index 67f839b..517023a 100644 --- a/lib/viewfunctions.lua +++ b/lib/viewfunctions.lua @@ -17,7 +17,7 @@ function getlabel(myitem, value) end end end - return value + return tostring(value) end function displayitemcustom(myitem, header_level) |