PEAR is archived and read-only

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

Home » HTML » HTML_QuickForm » Bug #5260

Fatal Error in HTML_QuickForm_input constructor after installing APC extension

Details

Submitted2005-09-01 07:13 UTC
Fromwilliams at ctionline dot co dot za
StatusBogus
PackageHTML_QuickForm
PHP Version5.1.0
OSLinux
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.