mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/16524] Minor code adjustments
PHPBB3-16524
This commit is contained in:
parent
0ba0a9cbd3
commit
b1c6b3bc94
3 changed files with 3 additions and 3 deletions
|
@ -79,7 +79,7 @@ $lang = array_merge($lang, array(
|
||||||
'ACL_U_SAVEDRAFTS' => 'Can save drafts',
|
'ACL_U_SAVEDRAFTS' => 'Can save drafts',
|
||||||
'ACL_U_CHGCENSORS' => 'Can disable word censors',
|
'ACL_U_CHGCENSORS' => 'Can disable word censors',
|
||||||
'ACL_U_SIG' => 'Can use signature',
|
'ACL_U_SIG' => 'Can use signature',
|
||||||
'ACL_U_EMOJI' => 'Can use emoji and rich text characters in topic title<br /><em>This setting also affects profile fields.</em>',
|
'ACL_U_EMOJI' => 'Can use emoji and rich text characters in topic title<br><em>This setting also affects profile fields.</em>',
|
||||||
|
|
||||||
'ACL_U_SENDPM' => 'Can send private messages',
|
'ACL_U_SENDPM' => 'Can send private messages',
|
||||||
'ACL_U_MASSPM' => 'Can send private messages to multiple users',
|
'ACL_U_MASSPM' => 'Can send private messages to multiple users',
|
||||||
|
|
|
@ -109,7 +109,7 @@ class type_string extends type_string_common
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Check for out-of-bounds characters that are currently
|
* Check for out-of-bounds characters that are currently
|
||||||
* not supported by utf8_bin in MySQL if Emoji is not allowed
|
* not supported by utf8_bin in MySQL if Emoji are not allowed
|
||||||
*/
|
*/
|
||||||
if (!$this->auth->acl_get('u_emoji'))
|
if (!$this->auth->acl_get('u_emoji'))
|
||||||
{
|
{
|
||||||
|
|
|
@ -109,7 +109,7 @@ class type_text extends type_string_common
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Check for out-of-bounds characters that are currently
|
* Check for out-of-bounds characters that are currently
|
||||||
* not supported by utf8_bin in MySQL if Emoji is not allowed
|
* not supported by utf8_bin in MySQL if Emoji are not allowed
|
||||||
*/
|
*/
|
||||||
if (!$this->auth->acl_get('u_emoji'))
|
if (!$this->auth->acl_get('u_emoji'))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue