Home » HTML » HTML_CSS » Bug #6514
Invalid hash access
Details
| Submitted | 2006-01-18 07:48 UTC |
|---|---|
| From | dsanders at baselinesolutions dot com dot au |
| Status | Bogus |
| Package | HTML_CSS |
| PHP Version | 4.3.7 |
| OS | n/a |
| Roadmaps | (Not assigned) |
Comments
[2006-01-18 07:48 UTC] dsanders at baselinesolutions dot com dot au
Description:
------------
Lines 245 and 259 of CSS.php have invalid hash accesses, if the element is not defined, and are causing PHP notices.
Use
if (isset($this->_alibis[$element]))
instead of
if ($this->_alibis[$element])