diff --git a/application/models/Attribute.php b/application/models/Attribute.php index d34c725f7..27d574a2a 100644 --- a/application/models/Attribute.php +++ b/application/models/Attribute.php @@ -309,6 +309,11 @@ class Attribute extends CI_Model $this->db->trans_complete(); } } + else if($to_type === DROPDOWN) + { + $success = TRUE; + } + } //From DROPDOWN to TEXT @@ -575,4 +580,4 @@ class Attribute extends CI_Model return $this->db->update('attribute_definitions', array('deleted' => 1)); } -} \ No newline at end of file +}