Home » HTML » HTML_CSS » Bug #10103
typo in HTML_CSS constructor
Details
| Submitted | 2007-02-14 21:27 UTC |
|---|---|
| From | manfred dot knapp at student dot tugraz dot at |
| Assigned | farell |
| Status | Closed |
| Package | HTML_CSS |
| PHP Version | 5.1.2 |
| OS | windows xp |
| Roadmaps | (Not assigned) |
Comments
[2007-02-14 21:27 UTC] manfred dot knapp at student dot tugraz dot at
Description:
------------
hello!
i think you have a typo in your HTML_CSS constructor.
handling your attribute 'oneline' changes to 'online' on the following line of code.
Test script:
---------------
function HTML_CSS($attributes = array(), $errorPrefs = array())
{
...
if ((isset($attributes['oneline']))
&& (is_bool($attributes['online']))) {
$this->setSingleLineOutput($attributes['online']);
}
...
}