PEAR is archived and read-only

This mirror preserves historical PEAR package releases and metadata so existing references remain available.

Home » HTML » HTML_CSS » Bug #6514

Invalid hash access

Details

Submitted2006-01-18 07:48 UTC
Fromdsanders at baselinesolutions dot com dot au
StatusBogus
PackageHTML_CSS
PHP Version4.3.7
OSn/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])