I'm using Joomla 1.5.5 and have received this error in the logs a few times. I couldn't find assistance with it so I thought i'd throw in a suggestion as a quickfix.
PHP Notice: Undefined property: JParameter::$text in /home/client/plugins/content/chronocontact.php on line 18
in chronocontact.php change:
to:
PHP Notice: Undefined property: JParameter::$text in /home/client/plugins/content/chronocontact.php on line 18
in chronocontact.php change:
$row->text = preg_replace_callback( $regex, 'showform2', $row->text );
to:
if(isset($row->text))
$row->text = preg_replace_callback( $regex, 'showform2', $row->text );
else
$row->text = "";
Hi Brandon,
thanks for the suggestion, it happens when you content item is empty, I will move this to the correct forums!
Regards,
Max
thanks for the suggestion, it happens when you content item is empty, I will move this to the correct forums!
Regards,
Max
This topic is locked and no more replies can be posted.