1 | 1 |
deleted file mode 100644 |
... | ... |
@@ -1,29 +0,0 @@ |
1 |
-<!-- indexer::stop --> |
|
2 |
-<div class="<?php echo $this->class; ?> <?php echo $this->tableless ? 'tableless' : 'tableform'; ?> block"<?php echo $this->cssID; ?><?php if ($this->style): ?> style="<?php echo $this->style; ?>"<?php endif; ?>> |
|
3 |
- |
|
4 |
- <?php if ($this->headline): ?> |
|
5 |
- <<?php echo $this->hl; ?>><?php echo $this->headline; ?></<?php echo $this->hl; ?>> |
|
6 |
- <?php endif; ?> |
|
7 |
- |
|
8 |
- <form<?php if ($this->action): ?> action="<?php echo $this->action; ?>"<?php endif; ?> id="<?php echo $this->formId; ?>" method="<?php echo $this->method; ?>" enctype="<?php echo $this->enctype; ?>"<?php echo $this->attributes; ?><?php echo $this->novalidate; ?>> |
|
9 |
- <div class="formbody"> |
|
10 |
- <?php if ($this->method != 'get'): ?> |
|
11 |
- <input type="hidden" name="FORM_SUBMIT" value="<?php echo $this->formSubmit; ?>"> |
|
12 |
- <input type="hidden" name="REQUEST_TOKEN" value="{{request_token}}"> |
|
13 |
- <?php if ($this->maxFileSize): ?> |
|
14 |
- <input type="hidden" name="MAX_FILE_SIZE" value="<?php echo $this->maxFileSize; ?>"> |
|
15 |
- <?php endif; ?> |
|
16 |
- <?php endif; ?> |
|
17 |
- <?php echo $this->hidden; ?> |
|
18 |
- <?php if (!$this->tableless): ?> |
|
19 |
- <table> |
|
20 |
- <?php echo $this->fields; ?> |
|
21 |
- </table> |
|
22 |
- <?php else: ?> |
|
23 |
- <?php echo $this->fields; ?> |
|
24 |
- <?php endif; ?> |
|
25 |
- </div> |
|
26 |
- </form> |
|
27 |
- |
|
28 |
-</div> |
|
29 |
-<!-- indexer::continue --> |
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,29 @@ |
1 |
+<!-- indexer::stop --> |
|
2 |
+<div class="<?php echo $this->class; ?> <?php echo $this->tableless ? 'tableless' : 'tableform'; ?> block"<?php echo $this->cssID; ?><?php if ($this->style): ?> style="<?php echo $this->style; ?>"<?php endif; ?>> |
|
3 |
+ |
|
4 |
+ <?php if ($this->headline): ?> |
|
5 |
+ <<?php echo $this->hl; ?>><?php echo $this->headline; ?></<?php echo $this->hl; ?>> |
|
6 |
+ <?php endif; ?> |
|
7 |
+ |
|
8 |
+ <form<?php if ($this->action): ?> action="<?php echo $this->action; ?>"<?php endif; ?> id="<?php echo $this->formId; ?>" method="<?php echo $this->method; ?>" enctype="<?php echo $this->enctype; ?>"<?php echo $this->attributes; ?><?php echo $this->novalidate; ?>> |
|
9 |
+ <div class="formbody"> |
|
10 |
+ <?php if ($this->method != 'get'): ?> |
|
11 |
+ <input type="hidden" name="FORM_SUBMIT" value="<?php echo $this->formSubmit; ?>"> |
|
12 |
+ <input type="hidden" name="REQUEST_TOKEN" value="{{request_token}}"> |
|
13 |
+ <?php if ($this->maxFileSize): ?> |
|
14 |
+ <input type="hidden" name="MAX_FILE_SIZE" value="<?php echo $this->maxFileSize; ?>"> |
|
15 |
+ <?php endif; ?> |
|
16 |
+ <?php endif; ?> |
|
17 |
+ <?php echo $this->hidden; ?> |
|
18 |
+ <?php if (!$this->tableless): ?> |
|
19 |
+ <table> |
|
20 |
+ <?php echo $this->fields; ?> |
|
21 |
+ </table> |
|
22 |
+ <?php else: ?> |
|
23 |
+ <?php echo $this->fields; ?> |
|
24 |
+ <?php endif; ?> |
|
25 |
+ </div> |
|
26 |
+ </form> |
|
27 |
+ |
|
28 |
+</div> |
|
29 |
+<!-- indexer::continue --> |