From 377e73a4f73b78e888ee6c34432625b6c5129129 Mon Sep 17 00:00:00 2001 From: Steve Alberty Date: Tue, 24 Jul 2001 08:42:26 +0000 Subject: [PATCH] fix parameter count --- ChangeLog | 3 +++ tbl_copy.php3 | 11 ++++++----- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3c4c7c29b..7ad80161a 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ phpMyAdmin - Changelog $Id$ $Source$ +2001-07-24 Steve ALberty + * tbl_copy.php3: fix parameter count, thanks Marc + 2001-07-24 Geert Lund * danish language file code cleanup (only changed order of stings) * added $strQBEDel and $strQBEIns strings to all language files diff --git a/tbl_copy.php3 b/tbl_copy.php3 index a03f47e0e..9124fc73e 100755 --- a/tbl_copy.php3 +++ b/tbl_copy.php3 @@ -10,7 +10,7 @@ mysql_select_db($db); function my_handler($sql_insert) { global $table, $db, $new_name; - + $sql_insert = ereg_replace("INSERT INTO $table", "INSERT INTO $new_name", $sql_insert); $result = mysql_query($sql_insert) or mysql_die(); $sql_query = $sql_insert; @@ -20,7 +20,7 @@ if (isset($new_name)) $new_name=trim($new_name); // Cleanup to suppress '' table if (isset($new_name) && $new_name!=""){ $sql_structure = get_table_def($db, $table, "\n"); // speedup copy table - staybyte - 22. Juni 2001 - if(MYSQL_MAJOR_VERSION >= "3.23"){ + if(MYSQL_MAJOR_VERSION >= 3.23){ $sql_structure = ereg_replace("CREATE TABLE `$table`", "CREATE TABLE `$new_name`", $sql_structure); $result = mysql_query($sql_structure) or mysql_die(); if($what == "data"){ @@ -29,8 +29,11 @@ if (isset($new_name) && $new_name!=""){ } } else{ - $sql_structure = ereg_replace("CREATE TABLE $table", "CREATE TABLE $new_name", $sql_structure); + $sql_structure = ereg_replace("CREATE TABLE `$table`", "CREATE TABLE $new_name", $sql_structure); $result = mysql_query($sql_structure) or mysql_die(); + if ($result!=false && $what == "data"){ + get_table_content($db, $table, 0, 0, "my_handler"); + } } } else mysql_die($strTableEmpty); @@ -40,8 +43,6 @@ if (isset($sql_query)) else $sql_query = "$sql_structure"; -if(MYSQL_MAJOR_VERSION < "3.23" && $what == "data") get_table_content($db, $table, "my_handler"); - eval("\$message = \"$strCopyTableOK\";"); require("./db_details.php3"); ?>