summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenny Baumann <BenBE@geshi.org>2013-10-15 22:32:00 +0200
committerBenny Baumann <BenBE@geshi.org>2013-10-15 22:32:00 +0200
commit027e4712332f850848104e93ad9c955a328138c7 (patch)
tree006a5262e59c56a7a96aa19c93e26699320a6b58
parentb46ec1ee22d739bf0c839d4bb8696e54ea6d03ef (diff)
parent2d47d038edcc10b2c119f0f2e135fa9c16c634e4 (diff)
downloadcacert-devel-027e4712332f850848104e93ad9c955a328138c7.tar.gz
cacert-devel-027e4712332f850848104e93ad9c955a328138c7.tar.xz
cacert-devel-027e4712332f850848104e93ad9c955a328138c7.zip
Merge branch 'bug-1182' into release
-rw-r--r--www/sqldump.php22
1 files changed, 11 insertions, 11 deletions
diff --git a/www/sqldump.php b/www/sqldump.php
index 9476f6f..f30b4d0 100644
--- a/www/sqldump.php
+++ b/www/sqldump.php
@@ -15,24 +15,24 @@
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.2
+# version 0.0.3
#
# Generation Time: <?=date('r')?>
#
# Database: `cacert`
#
<?
- $tables = mysql_list_tables('cacert');
- 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 `cacert`.`$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";
+ }
?>