mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
[ticket/11201] Add commas on last array entry
PHPBB3-11201
This commit is contained in:
parent
0ce98d7eac
commit
ec8fd57f28
1 changed files with 2 additions and 2 deletions
|
@ -285,7 +285,7 @@ class profilefields
|
|||
'PROFILE_' . strtoupper($ident) . '_NAME' => $this->user->lang($ident_ary['data']['lang_name']),
|
||||
'PROFILE_' . strtoupper($ident) . '_EXPLAIN'=> $this->user->lang($ident_ary['data']['lang_explain']),
|
||||
|
||||
'S_PROFILE_' . strtoupper($ident) => true
|
||||
'S_PROFILE_' . strtoupper($ident) => true,
|
||||
);
|
||||
|
||||
$tpl_fields['blockrow'][] = array(
|
||||
|
@ -294,7 +294,7 @@ class profilefields
|
|||
'PROFILE_FIELD_NAME' => $this->user->lang($ident_ary['data']['lang_name']),
|
||||
'PROFILE_FIELD_EXPLAIN' => $this->user->lang($ident_ary['data']['lang_explain']),
|
||||
|
||||
'S_PROFILE_' . strtoupper($ident) => true
|
||||
'S_PROFILE_' . strtoupper($ident) => true,
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue