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 = "";