mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
git-svn-id: file:///svn/phpbb/trunk@8028 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
4e55587c85
commit
0c948afde2
2 changed files with 5 additions and 0 deletions
|
@ -214,6 +214,7 @@ p a {
|
||||||
<li>[Change] Do not force login on visiting topic/forum from notification emails (Bug #13818)</li>
|
<li>[Change] Do not force login on visiting topic/forum from notification emails (Bug #13818)</li>
|
||||||
<li>[Fix] Fixed cron_lock value for cron execution. This bug led to users having problems with the email queue and other cron related issues.</li>
|
<li>[Fix] Fixed cron_lock value for cron execution. This bug led to users having problems with the email queue and other cron related issues.</li>
|
||||||
<li>[Fix] Prevent white pages on php notices with gzip compression enabled (Bug #14096)</li>
|
<li>[Fix] Prevent white pages on php notices with gzip compression enabled (Bug #14096)</li>
|
||||||
|
<li>[Fix] Propagate the cleaned idendtifier for CFPs (Bug #14072)</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -662,6 +662,10 @@ class acp_profile
|
||||||
{
|
{
|
||||||
$var = false;
|
$var = false;
|
||||||
}
|
}
|
||||||
|
else if ($key == 'field_ident' && isset($cp->vars[$key]))
|
||||||
|
{
|
||||||
|
$_new_key_ary[$key]= $cp->vars[$key];
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$_new_key_ary[$key] = (is_array($_REQUEST[$key])) ? utf8_normalize_nfc(request_var($key, array(''), true)) : utf8_normalize_nfc(request_var($key, '', true));
|
$_new_key_ary[$key] = (is_array($_REQUEST[$key])) ? utf8_normalize_nfc(request_var($key, array(''), true)) : utf8_normalize_nfc(request_var($key, '', true));
|
||||||
|
|
Loading…
Add table
Reference in a new issue