Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Mendel <cybot_tm@users.sourceforge.net>2007-03-19 20:55:39 +0300
committerSebastian Mendel <cybot_tm@users.sourceforge.net>2007-03-19 20:55:39 +0300
commit817e790762d33c1b216636ef20929d8473804eee (patch)
treed95a69f9bee45619b49c5ac88159a02d9bd04e8d /db_export.php
parentb800466c912d1f2560992bbbe862a23b4c530913 (diff)
synced/fixed vim line
Diffstat (limited to 'db_export.php')
-rw-r--r--db_export.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/db_export.php b/db_export.php
index cdecaba5d0..a6d27ae28e 100644
--- a/db_export.php
+++ b/db_export.php
@@ -1,6 +1,6 @@
<?php
+/* vim: set expandtab sw=4 ts=4 sts=4: */
/* $Id$ */
-// vim: expandtab sw=4 ts=4 sts=4:
/**
* dumps a database
*
@@ -42,14 +42,14 @@ foreach ( $tables as $each_table ) {
// continue;
//}
if ( ! empty( $unselectall )
- || ( isset( $tmp_select )
+ || ( isset( $tmp_select )
&& false !== strpos( $tmp_select, '|' . $each_table['Name'] . '|') ) ) {
$is_selected = '';
} else {
$is_selected = ' selected="selected"';
}
$table_html = htmlspecialchars( $each_table['Name'] );
- $multi_values .= ' <option value="' . $table_html . '"'
+ $multi_values .= ' <option value="' . $table_html . '"'
. $is_selected . '>' . $table_html . '</option>' . "\n";
} // end for
$multi_values .= "\n";