extra characters into blobs

This commit is contained in:
Marc Delisle
2001-07-31 09:43:05 +00:00
parent 40c066f380
commit 21d69b1208
2 changed files with 4 additions and 2 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2001-07-31 Marc Delisle <lem9@users.sourceforge.net>
* tbl_change.php3: extra characters were being inserted into blobs
2001-07-31 Steve Alberty <alberty@neptunlabs.de> 2001-07-31 Steve Alberty <alberty@neptunlabs.de>
* tbl_create.php3: add warning if table name empty * tbl_create.php3: add warning if table name empty

View File

@@ -277,8 +277,7 @@ for ($i = 0; $i < mysql_num_rows($table_def); $i++) {
else { else {
?> ?>
<td> <td>
<textarea name="fields[<?php echo urlencode($field); ?>]" rows="<?php echo $cfgTextareaRows; ?>" cols="<?php echo $cfgTextareaCols; ?>"> <textarea name="fields[<?php echo urlencode($field); ?>]" rows="<?php echo $cfgTextareaRows; ?>" cols="<?php echo $cfgTextareaCols; ?>"><?php if (!empty($special_chars)) echo $special_chars . "\n"; ?>
<?php if (!empty($special_chars)) echo $special_chars . "\n"; ?>
</textarea> </textarea>
<?php <?php