Topic: Add entries to $lang_common
You see, PMS mod is disabled for guests (i.e. not visible), thus in the very beginning it checks whether the user is logged in and tells him to do so if not.
if ($pun_user['is_guest'])
message($lang_common['Login required']);
But, I've searched and didn't find entry 'Login required' in lang\English\common.php (or anywhere else)
I've updated common.php with this entry and forum failed with blank page (it failed to parse common.php to $lang_common I think)
Is it wrong to add lines to lang files?
Now I'm going to add Login required entry to mod's lang file (pms.php) and refer to that like $lang_pms['Login required'].
Any suggestions?