Christophe Vandeplas 2012-04-26 11:15:12 +02:00
parent 97a5790938
commit 8bd7b45248
2 changed files with 5 additions and 1 deletions

View File

@ -22,6 +22,7 @@
'label' => 'IDS Signature?'
));
echo $this->Form->input('value', array(
'type' => 'textarea',
'error' => array('escape' => false),
));
echo $this->Form->input('batch_import', array(

View File

@ -25,7 +25,10 @@
echo $this->Form->hidden('value');
echo "<BR>Value: ".$this->Form->value('Attribute.value');
} else {
echo $this->Form->input('value');
echo $this->Form->input('value', array(
'type' => 'textarea',
'error' => array('escape' => false),
));
}
?>
</fieldset>