Explorar el Código

Em Fieldtypes: a string value "0" should be seen as boolean false

ArnAud hace 9 años
padre
commit
3f30547252
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      EditorialModel/fieldtypes.py

+ 1
- 1
EditorialModel/fieldtypes.py Ver fichero

@@ -95,7 +95,7 @@ class EmField_boolean(EmFieldType):
95 95
         super(EmField_boolean, self).__init__('boolean')
96 96
 
97 97
     def from_string(self, value):
98
-        if value:
98
+        if value and value != "0":
99 99
             self.value = True
100 100
         else:
101 101
             self.value = False

Loading…
Cancelar
Guardar