2
Edit the file
class/xoopsform/formtext.php ...
You will find your answer in it like this :
le="color: #000000"><?php /** * Constructor * * @param string $caption Caption * @param string $name "name" attribute * @param int $size Size * @param int $maxlength Maximum length of text * @param string $value Initial text */ function XoopsFormText($caption, $name, $size, $maxlength, $value=""){ $this->setCaption($caption); $this->setName($name); $this->_size = intval($size); $this->_maxlength = intval($maxlength); $this->setValue($value); }