Disabled XML export for multiple databases because an XML file must not contain more than one database.
This commit is contained in:
@@ -14,6 +14,8 @@ $Source$
|
|||||||
- Display CREATE DATABASE query;
|
- Display CREATE DATABASE query;
|
||||||
- Call user-defined default tab instead of hardcoded db_details.php3.
|
- Call user-defined default tab instead of hardcoded db_details.php3.
|
||||||
* index.php3: Don't display scrollbars in queryframe (Opera fix).
|
* index.php3: Don't display scrollbars in queryframe (Opera fix).
|
||||||
|
* libraries/display_export.lib.php3: Disabled XML export for multiple
|
||||||
|
databases because an XML file must not contain more than one database.
|
||||||
|
|
||||||
2003-07-10 Garvin Hicking <me@supergarv.de>
|
2003-07-10 Garvin Hicking <me@supergarv.de>
|
||||||
* libraries/display_tbl.lib.php3: Let the default function take
|
* libraries/display_tbl.lib.php3: Let the default function take
|
||||||
|
@@ -88,11 +88,13 @@ if (isset($sql_query)) {
|
|||||||
<!-- General CSV -->
|
<!-- General CSV -->
|
||||||
<input type="radio" name="what" value="csv" id="radio_dump_csv" onclick="if(this.checked) { hide_them_all(); getElement('csv_options').style.display = 'block'; }; return true" <?php PMA_exportIsActive('format', 'csv'); ?> />
|
<input type="radio" name="what" value="csv" id="radio_dump_csv" onclick="if(this.checked) { hide_them_all(); getElement('csv_options').style.display = 'block'; }; return true" <?php PMA_exportIsActive('format', 'csv'); ?> />
|
||||||
<label for="radio_dump_csv"><?php echo $strStrucCSV;?></label>
|
<label for="radio_dump_csv"><?php echo $strStrucCSV;?></label>
|
||||||
|
<?php if (!empty($db)) { ?>
|
||||||
<br /><br />
|
<br /><br />
|
||||||
|
|
||||||
<!-- XML -->
|
<!-- XML -->
|
||||||
<input type="radio" name="what" value="xml" id="radio_dump_xml" onclick="if(this.checked) { hide_them_all(); getElement('none_options').style.display = 'block'; }; return true" <?php PMA_exportIsActive('format', 'xml'); ?> />
|
<input type="radio" name="what" value="xml" id="radio_dump_xml" onclick="if(this.checked) { hide_them_all(); getElement('none_options').style.display = 'block'; }; return true" <?php PMA_exportIsActive('format', 'xml'); ?> />
|
||||||
<label for="radio_dump_xml"><?php echo $strXML; ?></label>
|
<label for="radio_dump_xml"><?php echo $strXML; ?></label>
|
||||||
|
<?php } ?>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
</td>
|
</td>
|
||||||
<!-- Options -->
|
<!-- Options -->
|
||||||
|
Reference in New Issue
Block a user