From 1589264ecc029a665b49893d0d8764f335b497d0 Mon Sep 17 00:00:00 2001 From: vAugagneur Date: Mon, 1 Oct 2012 08:15:56 +0000 Subject: [PATCH] //fixed size of field Hook::name => 64 git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@17629 b9a71923-0436-4b27-9f14-aed3839534dd --- classes/Hook.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/Hook.php b/classes/Hook.php index 9fd96dece..687d632b4 100644 --- a/classes/Hook.php +++ b/classes/Hook.php @@ -64,7 +64,7 @@ class HookCore extends ObjectModel 'table' => 'hook', 'primary' => 'id_hook', 'fields' => array( - 'name' => array('type' => self::TYPE_STRING, 'validate' => 'isHookName', 'required' => true, 'size' => 32), + 'name' => array('type' => self::TYPE_STRING, 'validate' => 'isHookName', 'required' => true, 'size' => 64), 'title' => array('type' => self::TYPE_STRING), 'description' => array('type' => self::TYPE_HTML), 'position' => array('type' => self::TYPE_BOOL),