... | ... |
@@ -1,14 +1,14 @@ |
1 | 1 |
|
2 | 2 |
<?php if ($this->tableless): ?> |
3 | 3 |
|
4 |
- <div class="<?php echo $this->class; ?>"> |
|
5 |
- <?php echo $this->message; ?> |
|
4 |
+ <div class="<?= $this->class; ?>"> |
|
5 |
+ <?= $this->message; ?> |
|
6 | 6 |
</div> |
7 | 7 |
|
8 | 8 |
<?php else: ?> |
9 | 9 |
|
10 |
- <tr class="<?php echo $this->class; ?>"> |
|
11 |
- <td colspan="2"><div class="colspan"><?php echo $this->message; ?></div></td> |
|
10 |
+ <tr class="<?= $this->class; ?>"> |
|
11 |
+ <td colspan="2"><div class="colspan"><?= $this->message; ?></div></td> |
|
12 | 12 |
</tr> |
13 | 13 |
|
14 | 14 |
<?php endif; ?> |
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,14 @@ |
1 |
+ |
|
2 |
+<?php if ($this->tableless): ?> |
|
3 |
+ |
|
4 |
+ <div class="<?php echo $this->class; ?>"> |
|
5 |
+ <?php echo $this->message; ?> |
|
6 |
+ </div> |
|
7 |
+ |
|
8 |
+<?php else: ?> |
|
9 |
+ |
|
10 |
+ <tr class="<?php echo $this->class; ?>"> |
|
11 |
+ <td colspan="2"><div class="colspan"><?php echo $this->message; ?></div></td> |
|
12 |
+ </tr> |
|
13 |
+ |
|
14 |
+<?php endif; ?> |