I wrote my own podcasting app in PHP a long time ago, but it’s worked so well I’ve never had to really tweak it. But any mp3’s ending with the letter “P” in the filename are getting the trailing “p” truncated. WEIRD. Now I’ve got to go figure it out.

Update: Turns out it was a quirk with the trim() function in PHP. Still not sure why, and I haven’t seen it documented. Fixed it with a str_replace() hack. I really just need to implement an ID3 tag reader. Another day, maybe.