diff --git a/components/com_contact/views/contact/view.html.php b/components/com_contact/views/contact/view.html.php index eba83e7f4bb6d..32603028be3d8 100644 --- a/components/com_contact/views/contact/view.html.php +++ b/components/com_contact/views/contact/view.html.php @@ -238,7 +238,7 @@ public function display($tpl = null) $offset = $state->get('list.offset'); // Fix for where some plugins require a text attribute - !empty($item->description)? $item->text = $item->description : $item->text = null; + !empty($item->misc)? $item->text = $item->misc : $item->text = null; $dispatcher->trigger('onContentPrepare', array ('com_contact.contact', &$item, &$this->params, $offset)); // Store the events for later @@ -254,7 +254,7 @@ public function display($tpl = null) if ($item->text) { - $item->description = $item->text; + $item->misc = $item->text; } // Escape strings for HTML output