diff --git a/config.sample.inc.php b/config.sample.inc.php
index b886ff34e..f61b64839 100644
--- a/config.sample.inc.php
+++ b/config.sample.inc.php
@@ -36,7 +36,7 @@ $cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['extension'] = 'mysql';
$cfg['Servers'][$i]['AllowNoPassword'] = false;
-/* rajk - for blobstreaming */
+/* for blobstreaming */
$cfg['Servers'][$i]['bs_garbage_threshold'] = 50;
$cfg['Servers'][$i]['bs_repository_threshold'] = '32M';
$cfg['Servers'][$i]['bs_temp_blob_timeout'] = 600;
diff --git a/db_structure.php b/db_structure.php
index 479980e31..6bcc3bd85 100644
--- a/db_structure.php
+++ b/db_structure.php
@@ -151,7 +151,7 @@ $hidden_fields = array();
$odd_row = true;
$sum_row_count_pre = '';
-// added by rajk - for blobstreaming
+// for blobstreaming
$PMA_Config = $GLOBALS['PMA_Config'];
if (!empty($PMA_Config))
@@ -473,7 +473,7 @@ if ($is_show_stats) {
NULL' . "\n";
} else {
- // rajk - for blobstreaming
+ // for blobstreaming
$bs_reference_exists = $allBSTablesExist = FALSE;
diff --git a/tbl_change.php b/tbl_change.php
index 263e4ab36..cbeda52fd 100644
--- a/tbl_change.php
+++ b/tbl_change.php
@@ -818,7 +818,7 @@ foreach ($rows as $row_id => $vrow) {
if (($cfg['ProtectBinary'] && $field['is_blob'])
|| ($cfg['ProtectBinary'] == 'all' && $field['is_binary'])) {
echo "\n";
- // rajk - for blobstreaming
+ // for blobstreaming
$bs_reference_exists = FALSE;
if (isset ($tbl_type) && strlen ($tbl_type) > 0)
@@ -917,7 +917,6 @@ foreach ($rows as $row_id => $vrow) {
// (displayed whatever value the ProtectBinary has)
if ($is_upload && $field['is_blob']) {
- // added by rajk
// check if field type is of longblob
if ($field['pma_type'] == "longblob")
{
diff --git a/tbl_replace.php b/tbl_replace.php
index 5e7b97775..39bf6a2b9 100644
--- a/tbl_replace.php
+++ b/tbl_replace.php
@@ -226,7 +226,7 @@ foreach ($loop_array as $rowcount => $where_clause) {
require './libraries/tbl_replace_fields.inc.php';
- // rajk - for blobstreaming
+ // for blobstreaming
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;
$upload_blob_repo = isset($_REQUEST['upload_blob_repo_' . $key]) ? $_REQUEST['upload_blob_repo_' . $key] : NULL;
|