From f0672d82c38af1593523e2271f4cadcd27e64e39 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Mon, 15 Mar 2010 16:08:56 -0400 Subject: [PATCH] bug #2967565 UNHEX not selected by default when inserting BINARY --- ChangeLog | 1 + tbl_change.php | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 9514bd826..1594d49fb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -11,6 +11,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA - bug #2966078 [browse] Incorrect LIMIT is saved and sticks while browsing - bug #2967366 [Structure] Some results of Propose table structure are shown in hex +- bug #2967565 [insert] UNHEX not selected by default when inserting BINARY 3.3.1.0 (not yet released) - bug #2941037 [core] Database structure not sorted by table correctly diff --git a/tbl_change.php b/tbl_change.php index c2fb93aa9..f8cc1c0cf 100644 --- a/tbl_change.php +++ b/tbl_change.php @@ -429,6 +429,7 @@ foreach ($rows as $row_id => $vrow) { $real_null_value = FALSE; $special_chars_encoded = ''; if (isset($vrow)) { + // (we are editing) // On a BLOB that can have a NULL value, the is_null() returns // true if it has no content but for me this is different than // having been set explicitely to NULL so I put an exception here @@ -464,6 +465,7 @@ foreach ($rows as $row_id => $vrow) { . $field_name_appendix . '" value="' . htmlspecialchars($vrow[$field['Field']]) . '" />'; } else { + // (we are inserting) // loic1: display default values if (!isset($field['Default'])) { $field['Default'] = ''; @@ -479,6 +481,10 @@ foreach ($rows as $row_id => $vrow) { } $backup_field = ''; $special_chars_encoded = PMA_duplicateFirstNewline($special_chars); + // this will select the UNHEX function while inserting + if (($field['is_binary'] || $field['is_blob']) && $_SESSION['tmp_user_values']['display_binary_as_hex'] && $cfg['ShowFunctionFields']) { + $field['display_binary_as_hex'] = true; + } } $idindex = ($o_rows * $fields_cnt) + $i + 1;