From dc5ab97fbb417726a40ec5abbcf322716705ad81 Mon Sep 17 00:00:00 2001 From: vAugagneur Date: Mon, 12 Mar 2012 15:26:24 +0000 Subject: [PATCH] //small fix git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@14046 b9a71923-0436-4b27-9f14-aed3839534dd --- classes/Employee.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/Employee.php b/classes/Employee.php index 4ecf75595..b3127dc0b 100644 --- a/classes/Employee.php +++ b/classes/Employee.php @@ -88,7 +88,7 @@ class EmployeeCore extends ObjectModel 'active' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool'), 'id_profile' => array('type' => self::TYPE_INT, 'validate' => 'isInt', 'required' => true), 'bo_color' => array('type' => self::TYPE_STRING, 'validate' => 'isColor', 'size' => 32), - 'default_tab' => array('type' => self::TYPE_INT, 'validate' => 'isInt', 'required' => true), + 'default_tab' => array('type' => self::TYPE_INT, 'validate' => 'isInt'), 'bo_theme' => array('type' => self::TYPE_STRING, 'validate' => 'isGenericName', 'size' => 32), 'bo_width' => array('type' => self::TYPE_INT, 'validate' => 'isUnsignedInt'), 'bo_show_screencast' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool'),