Finally tracked this one down. Bit of a bug, but an easy fix. You need to edit admin/changeuser.php. Line 110 looks like this:

Code
    $usertitle = preg_replace("<","&lt;",$usertitle);

You need to change that, to this:

Code
    $usertitle = preg_replace("#<#","&lt;",$usertitle);