Mp3tag inserts an extra space character in custom tag field names starting with COMMENT or WWW

To reproduce this issue add a new custom tag in the Extended Tag View (Alt+T) dialog, with a tag name that has COMMENT at the beginning and one or more arbitrary characters following, e.g. COMMENTAR, and then write something into the Value field and save it in the file. Now open the Extended Tag View (Alt+T) again and the new tag field got the name COMMENT AR, i.e. a space character has been inserted behind the COMMENT-part.
A similar effect can be observed with standad tags that start with WWW. In this case the space always appears behind WWW, e.g. WWWARTISTXY becomes WWW ARTISTXY. All other standard tags act normal, that means that there does't turn up no extra space character, if their name is used together with some more characters at the end.
Before storing the tags in the file:


After storing and rereading the tags:

Same effect also appears in web source scripts.

This is expected behaviour for these two fields and the part after COMMENT or WWW is treated as the description part of the respective ID3v2 frame.

Thank you @Florian for this explanation, I didn't know that. It seems to me to be best practice to always in the first place insert a space between COMMENT or WWW and succeding chracters or words.
This is necessary in web source scripts, because e.g. using COMMENTX in a script will always create a new tag field COMMENT X and never overwrite an already existing one with every run of the script. This is contrary to the usual behaviour of replacing existent tag fields if at the Adjust tag information screen the OK is given.