<li> tags only shown when there is content in between them
This commit is contained in:
@@ -219,11 +219,10 @@ if (! empty($sql_query)) {
|
|||||||
<label for="checkbox_remember_template">
|
<label for="checkbox_remember_template">
|
||||||
<?php echo __('use this for future exports'); ?></label>
|
<?php echo __('use this for future exports'); ?></label>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
|
||||||
<?php
|
<?php
|
||||||
// charset of file
|
// charset of file
|
||||||
if ($cfg['AllowAnywhereRecoding']) {
|
if ($cfg['AllowAnywhereRecoding']) {
|
||||||
echo ' <label for="select_charset_of_file" class="desc">'
|
echo ' <li><label for="select_charset_of_file" class="desc">'
|
||||||
. __('Character set of the file:') . '</label>' . "\n";
|
. __('Character set of the file:') . '</label>' . "\n";
|
||||||
reset($cfg['AvailableCharsets']);
|
reset($cfg['AvailableCharsets']);
|
||||||
echo '<select id="select_charset_of_file" name="charset_of_file" size="1">';
|
echo '<select id="select_charset_of_file" name="charset_of_file" size="1">';
|
||||||
@@ -235,17 +234,16 @@ if (! empty($sql_query)) {
|
|||||||
}
|
}
|
||||||
echo '>' . $temp_charset . '</option>';
|
echo '>' . $temp_charset . '</option>';
|
||||||
} // end foreach
|
} // end foreach
|
||||||
echo '</select>';
|
echo '</select></li>';
|
||||||
} // end if
|
} // end if
|
||||||
?>
|
?>
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<?php
|
<?php
|
||||||
// zip, gzip and bzip2 encode features
|
// zip, gzip and bzip2 encode features
|
||||||
$is_zip = ($cfg['ZipDump'] && @function_exists('gzcompress'));
|
$is_zip = ($cfg['ZipDump'] && @function_exists('gzcompress'));
|
||||||
$is_gzip = ($cfg['GZipDump'] && @function_exists('gzencode'));
|
$is_gzip = ($cfg['GZipDump'] && @function_exists('gzencode'));
|
||||||
$is_bzip = ($cfg['BZipDump'] && @function_exists('bzcompress'));
|
$is_bzip = ($cfg['BZipDump'] && @function_exists('bzcompress'));
|
||||||
if ($is_zip || $is_gzip || $is_bzip) { ?>
|
if ($is_zip || $is_gzip || $is_bzip) { ?>
|
||||||
|
<li>
|
||||||
<label for="compression" class="desc"><?php echo __('Compression:'); ?></label>
|
<label for="compression" class="desc"><?php echo __('Compression:'); ?></label>
|
||||||
<select id="compression" name="compression">
|
<select id="compression" name="compression">
|
||||||
<option value="none"><?php echo __('None'); ?></option>
|
<option value="none"><?php echo __('None'); ?></option>
|
||||||
@@ -257,10 +255,10 @@ if (! empty($sql_query)) {
|
|||||||
<option value="bzip"><?php echo __('bzipped'); ?></option>
|
<option value="bzip"><?php echo __('bzipped'); ?></option>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</select>
|
</select>
|
||||||
|
</li>
|
||||||
<?php } else { ?>
|
<?php } else { ?>
|
||||||
<input type="hidden" name="compression" value="none" />
|
<input type="hidden" name="compression" value="none" />
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li><input type="radio" id="radio_view_as_text" name="output_format" value="astext" /><label for="radio_view_as_text">View output as text</label></li>
|
<li><input type="radio" id="radio_view_as_text" name="output_format" value="astext" /><label for="radio_view_as_text">View output as text</label></li>
|
||||||
|
Reference in New Issue
Block a user