http://qs321.pair.com?node_id=662846


in reply to Re: MP3::Tag - Leading zeros on 'track' truncated
in thread MP3::Tag - Leading zeros on 'track' truncated

Quite possibly as a result of getting the next track number. It's easy to use math ($t=$t+1) instead of the increment operator ($t++) causing the leading zeroes to be removed. Example:

$ perl -e 'my $t="00";print ++$t' 01 $ perl -e 'my $t="00";print $t+1' 1
...roboticus