Home » HTTP » HTTP_Upload » Bug #834
undefined index CONTENT_TYPE
Details
| Submitted | 2004-02-23 01:46 UTC |
|---|---|
| From | maka3d at yahoo dot com dot br |
| Assigned | antonio |
| Status | Closed |
| Package | HTTP_Upload |
| PHP Version | 4.3.4 |
| OS | irrelevant |
| Roadmaps | (Not assigned) |
Comments
[2004-02-23 01:46 UTC] maka3d at yahoo dot com dot br
Description:
------------
at line 251, a notice raise if index CONTENT_TYPE doesn't exist, what happens in my server
when no post was sent.
Replace the follow line:
$this->content_type = $HTTP_SERVER_VARS['CONTENT_TYPE'];
for this:
if( isset($_SERVER['CONTENT_TYPE']) )
$this->content_type = $_SERVER['CONTENT_TYPE'];
and change too the old vector for $_SERVER