2011-06-10 21:55:32 +00:00
|
|
|
<?php
|
|
|
|
$this->config = $this->parent->config;
|
|
|
|
$this->lang = $this->parent->lang;
|
|
|
|
$d = $this->parent->dumpData;
|
2012-08-04 17:09:48 +00:00
|
|
|
if ($this->config->getParam('general.multiPart') == 0) { ?>
|
2011-06-10 21:55:32 +00:00
|
|
|
<tr class="row-odd">
|
|
|
|
<td class="small"><?php echo $this->lang->L_MULTI_PART?>:</td>
|
|
|
|
<td class="small right" colspan="2"><?php echo $this->lang->L_NO?></td>
|
|
|
|
</tr>
|
|
|
|
<?php } else { ?>
|
|
|
|
<tr class="row-odd">
|
|
|
|
<td class="small"><?php echo $this->lang->L_MULTI_PART?>:</td>
|
|
|
|
<td class="small right"><?php echo $this->lang->L_YES?></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="small"> <?php echo $this->lang->L_MULTIPART_SIZE?>:</td>
|
|
|
|
<td class="small right"><?php echo$this->byteOutput($this->config->multipartGroesse);?></td>
|
|
|
|
</tr>
|
2012-08-04 17:09:48 +00:00
|
|
|
<?php }
|