diff options
author | Martin Gummi <martin.gummi@gmx.net> | 2013-06-26 22:16:37 +0200 |
---|---|---|
committer | Martin Gummi <martin.gummi@gmx.net> | 2013-06-26 22:16:37 +0200 |
commit | 2d47d038edcc10b2c119f0f2e135fa9c16c634e4 (patch) | |
tree | c7b31c0b366a196a1b7a224477b1f5fda48ffe47 /www | |
parent | 413da01559790e19a682e89fb6ce3cb525341302 (diff) | |
download | cacert-devel-bug-1182.tar.gz cacert-devel-bug-1182.tar.xz cacert-devel-bug-1182.zip |
bug-1182: tab to whitespacebug-1182
Diffstat (limited to 'www')
-rw-r--r-- | www/sqldump.php | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/www/sqldump.php b/www/sqldump.php index c537f85..f30b4d0 100644 --- a/www/sqldump.php +++ b/www/sqldump.php @@ -15,7 +15,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ - header("content-type: text/plain"); + header("content-type: text/plain"); ?> # CAcert SQL Dump # version 0.0.3 @@ -25,14 +25,14 @@ # Database: `cacert` # <? - $tables = mysql_query("SHOW TABLES"); - while(list($table_name) = mysql_fetch_array($tables)) - { - echo "# --------------------------------------------------------\n\n"; - echo "#\n# Table structure for table `$table_name`\n#\n\n"; + $tables = mysql_query("SHOW TABLES"); + while(list($table_name) = mysql_fetch_array($tables)) + { + echo "# --------------------------------------------------------\n\n"; + echo "#\n# Table structure for table `$table_name`\n#\n\n"; - echo "DROP TABLE IF EXISTS `$table_name`;\n"; - $create = mysql_fetch_assoc(mysql_query("SHOW CREATE TABLE `$table_name`")); - echo $create['Create Table'].";\n\n"; - } + echo "DROP TABLE IF EXISTS `$table_name`;\n"; + $create = mysql_fetch_assoc(mysql_query("SHOW CREATE TABLE `$table_name`")); + echo $create['Create Table'].";\n\n"; + } ?> |