Why are there both these folders with similar files?:
language/{iso}/email/*.txt
And:
language/{iso}/email/short/*.txt
email/short
is only used by Jabber: \phpBB\phpbb\notification\method\jabber.phpCode: Select all
return $this->notify_using_messenger(NOTIFY_IM, 'short/');
Code: Select all
return $this->notify_using_messenger(NOTIFY_IM);
short/
would never be used. Maybe because no one actually cares for the more compact version. I don't know.scootergrisen wrote: Thu Apr 12, 2018 8:04 pm Are the txt files in email/short/ suppose to be more compact?
If so then why are they the same size as in email/?