diff --git a/Documentation.html b/Documentation.html
index 8e6e9113b..5797984b2 100644
--- a/Documentation.html
+++ b/Documentation.html
@@ -4321,7 +4321,7 @@ chmod o+rwx tmp
In config.inc.php your host should be defined with a FQDN (fully qualified domain name) instead of "localhost".
Ensure that your target table is under the PBXT storage engine and has a LONGBLOB column (which must be nullable if you want to remove the BLOB reference from it).
When you insert or update a row in this table, put a checkmark on the "Upload to BLOB repository" optional choice; otherwise, the upload will be done directly in your LONGBLOB column instead of the repository.
- Finally when you browse your table, you'll see in your column a link to stream your data, for example "View image". A header containing the correct MIME-type will be sent to your browser; this MIME-type was stored at upload time but in case it's incorrect, it's possible to edit it by clicking on the displayed MIME-type.
+ Finally when you browse your table, you'll see in your column a link to stream your data, for example "View image". A header containing the correct MIME-type will be sent to your browser; this MIME-type was stored at upload time.
diff --git a/bs_change_mime_type.php b/bs_change_mime_type.php
deleted file mode 100644
index edefae144..000000000
--- a/bs_change_mime_type.php
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
diff --git a/js/functions.js b/js/functions.js
index 162e80c2f..3ebdcbfc7 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -1660,46 +1660,6 @@ function popupBSMedia(url_params, bs_ref, m_type, is_cust_type, w_width, w_heigh
var mediaWin = window.open('bs_play_media.php?' + url_params + '&bs_reference=' + bs_ref + '&media_type=' + m_type + '&custom_type=' + is_cust_type, 'viewBSMedia', 'width=' + w_width + ', height=' + w_height + ', resizable=1, scrollbars=1, status=0');
}
-/**
- * popups a request for changing MIME types for files in the BLOB repository
- *
- * @param var db database name
- * @param var table table name
- * @param var reference BLOB repository reference
- * @param var current_mime_type current MIME type associated with BLOB repository reference
- */
-function requestMIMETypeChange(db, table, reference, current_mime_type)
-{
- // no mime type specified, set to default (nothing)
- if (undefined == current_mime_type)
- current_mime_type = "";
-
- // prompt user for new mime type
- var new_mime_type = prompt("Enter custom MIME type", current_mime_type);
-
- // if new mime_type is specified and is not the same as the previous type, request for mime type change
- if (new_mime_type && new_mime_type != current_mime_type)
- changeMIMEType(db, table, reference, new_mime_type);
-}
-
-/**
- * changes MIME types for files in the BLOB repository
- *
- * @param var db database name
- * @param var table table name
- * @param var reference BLOB repository reference
- * @param var mime_type new MIME type to be associated with BLOB repository reference
- */
-function changeMIMEType(db, table, reference, mime_type)
-{
- // specify url and parameters for jQuery POST
- var mime_chg_url = 'bs_change_mime_type.php';
- var params = { bs_db: db, bs_table: table, bs_reference: reference, bs_new_mime_type: mime_type };
-
- // jQuery POST
- jQuery.post(mime_chg_url, params);
-}
-
/**
* Jquery Coding for inline editing SQL_QUERY
*/
diff --git a/libraries/blobstreaming.lib.php b/libraries/blobstreaming.lib.php
index 707fc2407..594e5f1d7 100644
--- a/libraries/blobstreaming.lib.php
+++ b/libraries/blobstreaming.lib.php
@@ -332,7 +332,8 @@ function PMA_BS_CreateReferenceLink($bs_reference, $db_name)
return 'Error';
}
- $output = "$content_type";
+ //$output = "$content_type";
+ $output = $content_type;
// specify custom HTML for various content types
switch ($content_type) {