[#2279] Use the string versions of the booleans

This commit is contained in:
Eric Davis
2009-04-22 15:17:19 -07:00
parent 16d793bea6
commit 04d0d8ad9e

View File

@@ -14,7 +14,7 @@ module OverheadHelper
r
end
elsif field.field_format == 'bool'
return [[true,true],[false,false]]
return [['true','true'],['false','false']]
end
end
end