Whitespace cleanup.
This commit is contained in:
@@ -227,29 +227,29 @@ foreach ($loop_array as $rowcount => $where_clause) {
|
|||||||
require './libraries/tbl_replace_fields.inc.php';
|
require './libraries/tbl_replace_fields.inc.php';
|
||||||
|
|
||||||
// rajk - for blobstreaming
|
// rajk - for blobstreaming
|
||||||
if ($blob_streaming_active && (NULL != $primary_field || strlen($primary_field) > 0)) {
|
if ($blob_streaming_active && (NULL != $primary_field || strlen($primary_field) > 0)) {
|
||||||
$remove_blob_repo = isset($_REQUEST['remove_blob_repo_' . $key]) ? $_REQUEST['remove_blob_repo_' . $key] : NULL;
|
$remove_blob_repo = isset($_REQUEST['remove_blob_repo_' . $key]) ? $_REQUEST['remove_blob_repo_' . $key] : NULL;
|
||||||
$upload_blob_repo = isset($_REQUEST['upload_blob_repo_' . $key]) ? $_REQUEST['upload_blob_repo_' . $key] : NULL;
|
$upload_blob_repo = isset($_REQUEST['upload_blob_repo_' . $key]) ? $_REQUEST['upload_blob_repo_' . $key] : NULL;
|
||||||
|
|
||||||
// checks if an existing blob repository reference should be removed
|
// checks if an existing blob repository reference should be removed
|
||||||
if (isset($remove_blob_repo) && !isset($upload_blob_repo)) {
|
if (isset($remove_blob_repo) && !isset($upload_blob_repo)) {
|
||||||
$remove_blob_reference = $_REQUEST['remove_blob_ref_' . $key];
|
$remove_blob_reference = $_REQUEST['remove_blob_ref_' . $key];
|
||||||
if (isset($remove_blob_reference)) {
|
if (isset($remove_blob_reference)) {
|
||||||
$val = "''";
|
$val = "''";
|
||||||
}
|
}
|
||||||
|
|
||||||
// checks if this field requires a bs reference attached to it
|
// checks if this field requires a bs reference attached to it
|
||||||
if (isset($upload_blob_repo)) {
|
if (isset($upload_blob_repo)) {
|
||||||
// get the most recent BLOB reference
|
// get the most recent BLOB reference
|
||||||
$bs_reference = PMA_File::getRecentBLOBReference();
|
$bs_reference = PMA_File::getRecentBLOBReference();
|
||||||
|
|
||||||
// if the most recent BLOB reference exists, set it as a field value
|
// if the most recent BLOB reference exists, set it as a field value
|
||||||
if (!is_null($bs_reference)) {
|
if (!is_null($bs_reference)) {
|
||||||
$val = "'" . PMA_sqlAddslashes($bs_reference) . "'";
|
$val = "'" . PMA_sqlAddslashes($bs_reference) . "'";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (empty($me_funcs[$key])) {
|
if (empty($me_funcs[$key])) {
|
||||||
$cur_value = $val;
|
$cur_value = $val;
|
||||||
|
Reference in New Issue
Block a user