Hey Tony, in “plugins\optional-content\tinymce_plugin.js” starting on line 46 remove this section of code :
else if(type == 'user-id'){
jQuery(".oc_field").hide();
jQuery("#users_grp").show();
}
and then on line 169 that looks like this :
<option><?php echo $user->user_login . " (" . $user->ID . ")"; ?></option>
change it to this :
<option value="<?php echo $user->ID ?>"><?php echo $user->user_login . " (" . $user->ID . ")"; ?></option>
That should fix that little piece of functionality for you ??