Hi,
Not sure if this is a proper bug, but when I assign something to $fd, instead of replacement it just add that value to the end:
Let assume current $fd value is "mydomain.com" if I do following: $fd = "newdomain.com";
$fd changed to "mydomain.comnewdomain.com", but it should be "newdomain.com"
I believe this is not proper behavior.
Thank you!
--- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/428
Closed #428.
--- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/428#event-482820009
You need msg_apply_changes() for each operation that alters a SIP header, if you do another operation that is going to alter same part. Changes to headers are not applied immediately:
* http://www.kamailio.org/wiki/tutorials/faq/main#why_changes_made_to_headers_...
--- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/428#issuecomment-162013783