... | ... |
@@ -1,9 +1,9 @@ |
1 | 1 |
<?php if (!$this->tableless): ?> |
2 |
- <tr class="<?php echo $this->rowClass; ?>"> |
|
3 |
- <td class="col_0 col_first"><?php echo $this->generateLabel(); ?></td> |
|
4 |
- <td class="col_1 col_last"><?php echo $this->generateWithError(); ?></td> |
|
2 |
+ <tr class="<?= $this->rowClass; ?>"> |
|
3 |
+ <td class="col_0 col_first"><?= $this->generateLabel(); ?></td> |
|
4 |
+ <td class="col_1 col_last"><?= $this->generateWithError(); ?></td> |
|
5 | 5 |
</tr> |
6 | 6 |
<?php else: ?> |
7 |
- <?php echo $this->generateLabel(); ?> |
|
8 |
- <?php echo $this->generateWithError(); ?><br> |
|
7 |
+ <?= $this->generateLabel(); ?> |
|
8 |
+ <?= $this->generateWithError(); ?><br> |
|
9 | 9 |
<?php endif; ?> |
10 | 10 |
\ No newline at end of file |
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,9 @@ |
1 |
+<?php if (!$this->tableless): ?> |
|
2 |
+ <tr class="<?php echo $this->rowClass; ?>"> |
|
3 |
+ <td class="col_0 col_first"><?php echo $this->generateLabel(); ?></td> |
|
4 |
+ <td class="col_1 col_last"><?php echo $this->generateWithError(); ?></td> |
|
5 |
+ </tr> |
|
6 |
+<?php else: ?> |
|
7 |
+ <?php echo $this->generateLabel(); ?> |
|
8 |
+ <?php echo $this->generateWithError(); ?><br> |
|
9 |
+<?php endif; ?> |
|
0 | 10 |
\ No newline at end of file |