... | ... |
@@ -1,9 +1,9 @@ |
1 | 1 |
|
2 | 2 |
<?php if ($this->fsType == 'fsStart'): ?> |
3 | 3 |
|
4 |
- <fieldset<?php if ($this->class): ?> class="<?php echo $this->class; ?>"<?php endif; ?>> |
|
4 |
+ <fieldset<?php if ($this->class): ?> class="<?= $this->class; ?>"<?php endif; ?>> |
|
5 | 5 |
<?php if ($this->label): ?> |
6 |
- <legend><?php echo $this->label; ?></legend> |
|
6 |
+ <legend><?= $this->label; ?></legend> |
|
7 | 7 |
<?php endif; ?> |
8 | 8 |
|
9 | 9 |
<?php else: ?> |
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,13 @@ |
1 |
+ |
|
2 |
+<?php if ($this->fsType == 'fsStart'): ?> |
|
3 |
+ |
|
4 |
+ <fieldset<?php if ($this->class): ?> class="<?php echo $this->class; ?>"<?php endif; ?>> |
|
5 |
+ <?php if ($this->label): ?> |
|
6 |
+ <legend><?php echo $this->label; ?></legend> |
|
7 |
+ <?php endif; ?> |
|
8 |
+ |
|
9 |
+<?php else: ?> |
|
10 |
+ |
|
11 |
+ </fieldset> |
|
12 |
+ |
|
13 |
+<?php endif; ?> |