~ubuntu-branches/ubuntu/dapper/phpmyadmin/dapper-updates

« back to all changes in this revision

Viewing changes to server_export.php

  • Committer: Bazaar Package Importer
  • Author(s): Piotr Roszatycki
  • Date: 2004-12-13 19:23:57 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20041213192357-5jfwhvbnxaip4zbv
Tags: 2:2.6.1-rc1-1
* New upstream release.
* Security fix: Command execution and file disclosure was found.
  See http://www.phpmyadmin.net/home_page/security.php?issue=PMASA-2004-4
  Closes: #285488.
* Remove 003.non_standard_port_fix.diff applied to upstream.
* Add commented out options 'extension' and 'AllowRoot' to default config
  file.
* Support mysqli.so extension. Autodetect modules from 'extension' option.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?php
2
 
/* $Id: server_export.php,v 2.2 2003/11/26 22:52:24 rabus Exp $ */
 
2
/* $Id: server_export.php,v 2.4 2004/06/13 21:32:16 lem9 Exp $ */
3
3
// vim: expandtab sw=4 ts=4 sts=4:
4
4
 
5
5
 
31
31
 
32
32
 
33
33
<!-- Dump of a server -->
34
 
<h2>
35
 
    <?php echo $strViewDumpDatabases . "\n"; ?>
36
 
</h2>
37
 
 
38
 
<?php
 
34
<?php 
 
35
$export_page_title = $strViewDumpDatabases . "\n";
39
36
$multi_values = '<div align="center"><select name="db_select[]" size="6" multiple="multiple">';
40
37
$multi_values .= "\n";
41
38
 
42
 
foreach($dblist AS $current_db) {
 
39
foreach ($dblist AS $current_db) {
43
40
    if (!empty($selectall) || (isset($tmp_select) && strpos(' ' . $tmp_select, '|' . $current_db . '|'))) {
44
41
        $is_selected = ' selected="selected"';
45
42
    } else {