Minahito
minah****@users*****
2006年 7月 13日 (木) 17:24:47 JST
Index: xoops2jp/html/class/smarty/plugins/function.xoops_dhtmltarea.php diff -u xoops2jp/html/class/smarty/plugins/function.xoops_dhtmltarea.php:1.1.2.3 xoops2jp/html/class/smarty/plugins/function.xoops_dhtmltarea.php:1.1.2.4 --- xoops2jp/html/class/smarty/plugins/function.xoops_dhtmltarea.php:1.1.2.3 Sat Jul 1 13:20:24 2006 +++ xoops2jp/html/class/smarty/plugins/function.xoops_dhtmltarea.php Thu Jul 13 17:24:46 2006 @@ -10,7 +10,7 @@ * used. For format xoops_xxxx functions, we may change XoopsForm class * group. * - * @version $Id: function.xoops_dhtmltarea.php,v 1.1.2.3 2006/07/01 04:20:24 minahito Exp $ + * @version $Id: function.xoops_dhtmltarea.php,v 1.1.2.4 2006/07/13 08:24:46 minahito Exp $ */ /* @@ -49,7 +49,7 @@ // $name = trim($params['name']); $class = isset($params['class']) ? trim($params['class']) : null; - $cols = isset($params['cols']) ? intval($params['cols']) : XOOPS_TEXTAREA_DEFAULT_COLS; + $cols = isset($params['cols']) ? intval($params['cols']) : XOOPS_DHTMLTAREA_DEFAULT_COLS; $rows = isset($params['rows']) ? intval($params['rows']) : XOOPS_DHTMLTAREA_DEFAULT_ROWS; $value = isset($params['value']) ? trim($params['value']) : null; $id = isset($params['id']) ? trim($params['id']) : XOOPS_DHTMLTAREA_DEFID_PREFIX . $name;