- set type of input field

- added missing colon
This commit is contained in:
steinm 2012-12-19 10:21:30 +00:00
parent 570775f5bb
commit bfb7e323b9

View File

@ -73,10 +73,10 @@ function checkForm()
<table class="table-condensed">
<tr>
<td class="inputDescription"><?php printMLText("name");?>:</td>
<td><input name="name" size="60"></td>
<td><input type="text" name="name" size="60"></td>
</tr>
<tr>
<td valign="top" class="inputDescription"><?php printMLText("comment");?>:</td>
<td class="inputDescription"><?php printMLText("comment");?>:</td>
<td><textarea name="comment" rows="4" cols="80"></textarea></td>
</tr>
<tr>
@ -89,7 +89,7 @@ function checkForm()
foreach($attrdefs as $attrdef) {
?>
<tr>
<td><?php echo htmlspecialchars($attrdef->getName()); ?></td>
<td><?php echo htmlspecialchars($attrdef->getName()); ?>:</td>
<td><?php $this->printAttributeEditField($attrdef, '') ?></td>
</tr>
<?php