I got the following code
echo " <td colspan=\"5\"><input id=\"name\" size=\"". min($table['product']['name'][size],40) ."\" maxlength=\"". $table['product']['name'][size] ."\" name=\"name\"";
# leave empty name in clone
if (! $this->template) echo " value=\"". myentities($this->obj->name) ."\"";
echo " />";
What I been trying to do is to display a copy of the "myentities($this->obj->name)" outcome in a none editable form. I said a copy because If I just change the input type of the form component to "button" the result value it is not editable but still it is not being processed when the form is submitted... is it clear enough? thanks!