/**
  * getActionMessage() typically returns a Message object, but
  * if we return a string, it will just take that raw string and use it
  *
  * @return string
  */
 public function getActionMessage()
 {
     $msg = parent::getActionMessage();
     return $msg->parse();
 }