mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-14 05:31:42 +00:00
- set type of input field
- added missing colon
This commit is contained in:
parent
570775f5bb
commit
bfb7e323b9
|
@ -73,10 +73,10 @@ function checkForm()
|
||||||
<table class="table-condensed">
|
<table class="table-condensed">
|
||||||
<tr>
|
<tr>
|
||||||
<td class="inputDescription"><?php printMLText("name");?>:</td>
|
<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>
|
||||||
<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>
|
<td><textarea name="comment" rows="4" cols="80"></textarea></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -89,7 +89,7 @@ function checkForm()
|
||||||
foreach($attrdefs as $attrdef) {
|
foreach($attrdefs as $attrdef) {
|
||||||
?>
|
?>
|
||||||
<tr>
|
<tr>
|
||||||
<td><?php echo htmlspecialchars($attrdef->getName()); ?></td>
|
<td><?php echo htmlspecialchars($attrdef->getName()); ?>:</td>
|
||||||
<td><?php $this->printAttributeEditField($attrdef, '') ?></td>
|
<td><?php $this->printAttributeEditField($attrdef, '') ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php
|
<?php
|
||||||
|
|
Loading…
Reference in New Issue
Block a user