- output file converters for creation of index

This commit is contained in:
steinm 2012-02-14 12:54:22 +00:00
parent c06ad5b396
commit 1e06a235da

View File

@ -397,8 +397,17 @@ if(!is_writeable($settings->_configFilePath)) {
<td><input name="maxExecutionTime" value="<?php echo $settings->_maxExecutionTime ?>" /></td>
</tr>
<tr ><td><b> <?php printMLText("index_converters");?></b></td> </tr>
<?php
foreach($settings->_converters as $mimetype=>$cmd) {
?>
<tr title="<?php echo $mimetype;?>">
<td><?php echo $mimetype;?>:</td>
<td><input name="converters[<?php echo $mimetype;?>]" value="<?php echo $cmd ?>" size="100" /></td>
</tr>
<?php
}
?>
</table>
</div>