Bug #21190
closedSuggest: Function call on a non-object
0%
Description
I'm working with current trunk and get following error, when I try to edit a database record in list modul:
Fatal error: Call to a member function init() on a non-object in C:\xampp_webserver\htdocs\t3lib\class.t3lib_tceforms.php on line 402
Windows
XAMPP 1.7.2
PHP 5.3
Trunk version of TYPO3 4.3-dev
I replaced following line in class.t3lib_tceforms.php:
$this->suggest->init($this);
with:
if(!is_object($this->suggest)) {
$this->suggest = t3lib_div::makeInstance('t3lib_TCEforms_suggest');
}
$this->suggest->init($this);
and now it works for me.
(issue imported from #M12120)
Updated by Nicole Cordes over 11 years ago
- Status changed from New to Needs Feedback
- Target version deleted (
0)
I think this can be closed for now and is already resolved?!
Updated by Stefan Froemken over 11 years ago
Yeah...this ticket is really dusty :-) hust
Since TYPO3 4.5 I have no more problems with this cool feature.
You can close it.
Updated by Nicole Cordes over 11 years ago
- Status changed from Needs Feedback to Closed