Katie Horn has submitted this change and it was merged. Change subject: Allow periods in message correlation ids ......................................................................
Allow periods in message correlation ids In queue browser, fixes links to e.g. Worldpay messages Change-Id: Ia7d7df5ce50685fcc56f690bcde07d7312b46ef2 --- M sites/all/modules/wmf_common/wmf_common.module 1 file changed, 1 insertion(+), 1 deletion(-) Approvals: Katie Horn: Looks good to me, approved diff --git a/sites/all/modules/wmf_common/wmf_common.module b/sites/all/modules/wmf_common/wmf_common.module index 5dc0e53..d9ee473 100644 --- a/sites/all/modules/wmf_common/wmf_common.module +++ b/sites/all/modules/wmf_common/wmf_common.module @@ -166,7 +166,7 @@ $q = queue2civicrm_stomp(); $queue = preg_replace( '/[^-_a-z]/', '', $queue ); - $correlationId = preg_replace( '/[^-a-zA-Z0-9:]/', '', $correlationId ); + $correlationId = preg_replace( '/[^-a-zA-Z0-9\.:]/', '', $correlationId ); $msg = $q->getByCorrelationId( $queue, $correlationId ); -- To view, visit https://gerrit.wikimedia.org/r/174595 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: Ia7d7df5ce50685fcc56f690bcde07d7312b46ef2 Gerrit-PatchSet: 1 Gerrit-Project: wikimedia/fundraising/crm Gerrit-Branch: master Gerrit-Owner: Ejegg <[email protected]> Gerrit-Reviewer: Awight <[email protected]> Gerrit-Reviewer: Katie Horn <[email protected]> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
