I've posted this on experts-exchange, SitePoint, and some IRC channels with no luck... TIA for any ideas!
assuming paths to QuickForm are correct, is there any reason why $form->addElement would work but $form->clearAllTemplates is an undefined function?
$form = new HTML_QuickForm('regForm', 'POST');
$form->clearAllTemplates();
brings about_: Fatal error: Call to undefined function: clearalltemplates()
and yet
$form = new HTML_QuickForm('regForm', 'POST');
$form->addElement('text','name1','Name');
$form->display();
works fine. Any ideas??