1
hi'
I have upgraded XOOPS 2.4.3 to 2.4.4. All works fine except xForms module (v1.01,
download link)
This warning appears on top :
Deprecated: Assigning the return value of new by reference is deprecated in C:wampwwwXOOPS244modulesxformsadminindex.php on line 30
Deprecated: Assigning the return value of new by reference is deprecated in C:wampwwwXOOPS244modulesxformsadminindex.php on line 38
Deprecated: Assigning the return value of new by reference is deprecated in C:wampwwwXOOPS244modulesxformsadminindex.php on line 65
Code xforms (lines 30 to 38, index.php)
if( count($forms) > 0 ){
foreach( $forms as $form ){
$xoopsTpl->append('forms',
array('title' => $form->getVar('form_title'),
'desc' => $form->getVar('form_desc'),
'id' => $form->getVar('form_id')
)
);
}
Questions :
• how could I hide this alert ?
• I'm with a local server (PHP 5.30) ... is this alert could cause troubles to use module ?
Thanks in advance !