unused variable

This commit is contained in:
Marc Delisle
2008-05-18 15:53:27 +00:00
parent e209ed4662
commit 076ede089d
2 changed files with 0 additions and 5 deletions

View File

@@ -53,7 +53,6 @@ if ($file_to_insert->isError()) {
$file_to_insert->cleanUp(); $file_to_insert->cleanUp();
if (false !== $possibly_uploaded_val) { if (false !== $possibly_uploaded_val) {
$seen_binary = true;
$val = $possibly_uploaded_val; $val = $possibly_uploaded_val;
} else { } else {
@@ -94,7 +93,6 @@ if (false !== $possibly_uploaded_val) {
// blobs where set, insert original fields content. // blobs where set, insert original fields content.
if (! empty($prot_row[$key])) { if (! empty($prot_row[$key])) {
$val = '0x' . bin2hex($prot_row[$key]); $val = '0x' . bin2hex($prot_row[$key]);
$seen_binary = true;
} else { } else {
$val = ''; $val = '';
} }

View File

@@ -127,9 +127,6 @@ if (isset($_REQUEST['err_url'])) {
$err_url = 'tbl_change.php' . PMA_generate_common_url($url_params); $err_url = 'tbl_change.php' . PMA_generate_common_url($url_params);
} }
// Misc
$seen_binary = false;
/** /**
* Prepares the update/insert of a row * Prepares the update/insert of a row
*/ */