/**
  * Stores the message for later display.
  * Handles HTML/new line conversions.
  * @param string $msg
  * @param boolean $has_html
  * @access private
  */
 protected function _record_more($msg, $has_html)
 {
     $this->_log_info = $this->_messages[sizeof($this->_messages) - 1];
     parent::_record_more($msg, $has_html);
 }