View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0000342 | XMB1 | Bugs | public | 2010-01-24 16:54 | 2010-02-24 17:57 |
Reporter | miqrogroove | Assigned To | miqrogroove | ||
Priority | normal | Severity | minor | Reproducibility | random |
Status | closed | Resolution | fixed | ||
Product Version | 1.9.11 | ||||
Target Version | 1.9.11.08 | Fixed in Version | 1.9.11.08 | ||
Summary | 0000342: Undefined index in assertEmptyOutputStream() | ||||
Description | If the script dies before loading settings, the settings indexes will be undefined and must be checked before use. Notice: Undefined index: gzipcompress in include\global.inc.php on line 79 | ||||
Tags | No tags attached. | ||||
MySQL Version | |||||
PHP Version | |||||
Web Server | |||||
Browser | |||||
Flags | |||||
Original Reporter | |||||
SVN Revision | 2222 | ||||
Git Commit | |||||
2010-01-24 16:59
|
ticket-342.patch (729 bytes)
Index: global.inc.php =================================================================== --- global.inc.php (revision 2219) +++ global.inc.php (working copy) @@ -75,8 +75,10 @@ $buffer = ob_get_clean(); echo 'OB:'; var_dump(ini_get('output_buffering')); - echo 'GZ:'; - var_dump($SETTINGS['gzipcompress']); + if (isset($SETTINGS['gzipcompress'])) { + echo 'GZ:'; + var_dump($SETTINGS['gzipcompress']); + } echo "<br /><br />Error: XMB failed to start due to file corruption. " . "Please inspect $error_source. It has generated the following unexpected output:$buffer"; } |
Date Modified | Username | Field | Change |
---|---|---|---|
2010-01-24 16:54 | miqrogroove | New Issue | |
2010-01-24 16:54 | miqrogroove | Status | new => assigned |
2010-01-24 16:54 | miqrogroove | Assigned To | => miqrogroove |
2010-01-24 16:59 | miqrogroove | File Added: ticket-342.patch | |
2010-01-24 18:59 | miqrogroove | SVN Revision | => 2222 |
2010-01-24 18:59 | miqrogroove | Status | assigned => resolved |
2010-01-24 18:59 | miqrogroove | Fixed in Version | => 1.9.11.08 |
2010-01-24 18:59 | miqrogroove | Resolution | open => fixed |
2010-02-24 17:57 | miqrogroove | Status | resolved => closed |