- Affected version
 - 2.1.6 Patch 1
 
On save in admincp reaction, create a phrase for reaction title.
If we look at the entity of the reaction, we will see the missing applicable parameters
	
	
	
		
				
			$masterTitle = $reaction->getMasterPhrase(true);If we look at the entity of the reaction, we will see the missing applicable parameters
		PHP:
	
	public function getMasterPhrase()
{
   $phrase = $this->MasterTitle;
   if (!$phrase)
   {
      $phrase = $this->_em->create('XF:Phrase');
      $phrase->title = $this->_getDeferredValue(function() { return $this->getPhraseName(); }, 'save');
      $phrase->addon_id = '';
      $phrase->language_id = 0;
   }
   return $phrase;
}