Home » HTML » HTML_QuickForm » Bug #5260
Fatal Error in HTML_QuickForm_input constructor after installing APC extension
Details
| Submitted | 2005-09-01 07:13 UTC |
|---|---|
| From | williams at ctionline dot co dot za |
| Status | Bogus |
| Package | HTML_QuickForm |
| PHP Version | 5.1.0 |
| OS | Linux |
| Roadmaps | (Not assigned) |
Comments
[2005-09-01 07:13 UTC] williams at ctionline dot co dot za
Description:
------------
Fatal error: Call to undefined method HTML_QuickForm_text::HTML_QuickForm_element() in /usr/local/php5/lib/php/HTML/QuickForm/input.php on line 50
This started happening after I installed the APC extension, from PECL.
Test script:
---------------
Changing line 50 from
$this->HTML_QuickForm_element($elementName, $elementLabel, $attributes);
to
HTML_QuickForm_element::HTML_QuickForm_element($elementName, $elementLabel, $attributes);
solved the problem for me.