Using the Export function I noticed that the Owner column comes out as a User ID, and not a name. How can I change that so it comes out as that persons name, and not their Joomla User id.
in export.php
function user_id($user){
return ($user->user_id)?$user->user_id:'';
}
function userId($user){
return ($user->userId)?$user->userId:'';
}