Code: Select all
function EditAsArray($adding = false)
{
.
.
.
.
array_push($ret,array($this->Lang('text').':','<textarea style="width:100%" name="text" "cols="80" rows="20" >'.$this->GetPropertyValue('text').'</textarea>'));
kris
Code: Select all
function EditAsArray($adding = false)
{
.
.
.
.
array_push($ret,array($this->Lang('text').':','<textarea style="width:100%" name="text" "cols="80" rows="20" >'.$this->GetPropertyValue('text').'</textarea>'));
Code: Select all
array_push($ret,array($this->Lang('text').':',create_textarea(true, $this->GetPropertyValue('text'), 'text','','text','',$stylesheet, 80, 20));
'