[TYPO3] problem with sr_feuser_register
Franz Holzinger
franz at fholzinger.com
Mon Jun 11 12:37:00 CEST 2007
Remco Zwaan a écrit :
>
> Use sr_feuser_register for FE registration. It worked fine, but now I
> get the following error-message...
>
> Fatal error: Call to a member function conv_case() on a non-object in
> typo3conf/ext/static_info_tables/class.tx_staticinfotables_div.php on
> line 92
>
> Anyone suggestions?
>
Add the following line:
if (!is_object($csConvObj)) {
include_once(PATH_t3lib.'class.t3lib_cs.php');
// The object may not exist yet, so we need to create it now.
$csConvObj = &t3lib_div::makeInstance('t3lib_cs');
}
}
~ Franz
More information about the TYPO3-english
mailing list