mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
fixing two tiny bugs...
git-svn-id: file:///svn/phpbb/trunk@8077 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
273695dba8
commit
c7abce7490
2 changed files with 2 additions and 1 deletions
|
@ -1192,7 +1192,7 @@ class acp_users
|
|||
'view_smilies' => request_var('view_smilies', $this->optionget($user_row, 'viewsmilies')),
|
||||
'view_sigs' => request_var('view_sigs', $this->optionget($user_row, 'viewsigs')),
|
||||
'view_avatars' => request_var('view_avatars', $this->optionget($user_row, 'viewavatars')),
|
||||
'view_wordcensor' => request_var('view_wordcensore', $this->optionget($user_row, 'viewcensors')),
|
||||
'view_wordcensor' => request_var('view_wordcensor', $this->optionget($user_row, 'viewcensors')),
|
||||
|
||||
'bbcode' => request_var('bbcode', $this->optionget($user_row, 'bbcode')),
|
||||
'smilies' => request_var('smilies', $this->optionget($user_row, 'smilies')),
|
||||
|
|
|
@ -370,6 +370,7 @@ $lang = array_merge($lang, array(
|
|||
'NO_SUCH_SEARCH_MODULE' => 'The specified search backend doesn’t exist.',
|
||||
'NO_SUPPORTED_AUTH_METHODS' => 'No supported authentication methods.',
|
||||
'NO_TOPIC' => 'The requested topic does not exist.',
|
||||
'NO_TOPIC_FORUM' => 'The topic or forum no longer exist.',
|
||||
'NO_TOPICS' => 'There are no topics or posts in this forum.',
|
||||
'NO_TOPICS_TIME_FRAME' => 'No topics exist inside this forum for the selected time frame.',
|
||||
'NO_UNREAD_PM' => '<strong>0</strong> unread messages',
|
||||
|
|
Loading…
Add table
Reference in a new issue