bug 441689

This commit is contained in:
Marc Delisle
2001-07-16 18:28:35 +00:00
parent a3e9dd451b
commit cb6b32dd37
2 changed files with 5 additions and 1 deletions

View File

@@ -6,6 +6,9 @@ $Id$
$Source$ $Source$
2001-07-16 Marc Delisle <lem9@users.sourceforge.net>
* tbl_change.php3, bug 441689, "Insert as new row" was not copying blobs
2001-07-16 Lo<4C>c Chapeaux <lolo@phpheaven.net> 2001-07-16 Lo<4C>c Chapeaux <lolo@phpheaven.net>
* tbl_dump.php3, line 26: fixed bug #441571 (Gzipped dumps have wrong * tbl_dump.php3, line 26: fixed bug #441571 (Gzipped dumps have wrong
extension). extension).

View File

@@ -188,7 +188,8 @@ for($i=0;$i<mysql_num_rows($table_def);$i++)
// We don't want binary data destroyed // We don't want binary data destroyed
elseif((strstr($row_table_def["Type"], "blob") || strstr($row_table_def["Type"], "binary")) && !empty($data)) elseif((strstr($row_table_def["Type"], "blob") || strstr($row_table_def["Type"], "binary")) && !empty($data))
{ {
echo "<td>" . $strBinaryDoNotEdit . "</td>"; echo "<td>" . $strBinaryDoNotEdit;
echo "<input type=\"hidden\" name=fields[$field] value=\"".$special_chars."\" style=\"width:$cfgMaxInputsize;\" maxlength=$len></td>";
} }
else else
{ {