diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html
index 9c936aafa6..b404925af9 100644
--- a/phpBB/docs/CHANGELOG.html
+++ b/phpBB/docs/CHANGELOG.html
@@ -214,6 +214,7 @@ p a {
[Change] Do not force login on visiting topic/forum from notification emails (Bug #13818)
[Fix] Fixed cron_lock value for cron execution. This bug led to users having problems with the email queue and other cron related issues.
[Fix] Prevent white pages on php notices with gzip compression enabled (Bug #14096)
+ [Fix] Propagate the cleaned idendtifier for CFPs (Bug #14072)
diff --git a/phpBB/includes/acp/acp_profile.php b/phpBB/includes/acp/acp_profile.php
index 9ff2db9704..3b70b716b4 100644
--- a/phpBB/includes/acp/acp_profile.php
+++ b/phpBB/includes/acp/acp_profile.php
@@ -662,6 +662,10 @@ class acp_profile
{
$var = false;
}
+ else if ($key == 'field_ident' && isset($cp->vars[$key]))
+ {
+ $_new_key_ary[$key]= $cp->vars[$key];
+ }
else
{
$_new_key_ary[$key] = (is_array($_REQUEST[$key])) ? utf8_normalize_nfc(request_var($key, array(''), true)) : utf8_normalize_nfc(request_var($key, '', true));