From bdcf3df19507ee4918c8161cabbb68f9be474079 Mon Sep 17 00:00:00 2001 From: Nathan Gray Date: Mon, 8 Dec 2014 22:13:25 +0000 Subject: [PATCH] Floats don't have rows --- admin/inc/class.customfields.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/inc/class.customfields.inc.php b/admin/inc/class.customfields.inc.php index 914bc2dc9a..35356336bf 100644 --- a/admin/inc/class.customfields.inc.php +++ b/admin/inc/class.customfields.inc.php @@ -79,7 +79,7 @@ class customfields */ public static $type_attribute_flags = array( 'text' => array('cf_len' => true, 'cf_rows' => true), - 'float' => array('cf_len' => true, 'cf_rows' => true), + 'float' => array('cf_len' => true), 'label' => array('cf_values' => true), 'select' => array('cf_len' => false, 'cf_rows' => true, 'cf_values' => true), 'date' => array('cf_len' => true, 'cf_rows' => false),