/*
* Jirafeau, your web file repository
* Copyright (C) 2013
- * Jerome Jutteau <j.jutteau@gmail.com>
+ * Jerome Jutteau <jerome@jutteau.fr>
* Jimmy Beauvois <jimmy.beauvois@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
<div id="options">
<table id="option_table">
- <tr>
- <td><?php echo t('ONE_TIME_DL'); ?>:</td>
- <td><input type="checkbox" id="one_time_download" /></td>
- </tr>
+ <?php
+ if ($cfg['one_time_download']) {
+ echo '<tr><td>' . t('ONE_TIME_DL') . ':</td>';
+ echo '<td><input type="checkbox" id="one_time_download" /></td></tr>';
+ }
+ ?>
<tr>
<td><label for="input_key"><?php echo t('PSW') . ':'; ?></label></td>
<td><input type="password" name="key" id="input_key" /></td>