Thread Starter
nzcer
(@nzcer)
I have done this and yet it still reads “his”.
It is very weird because when I first did it, it showed up as “their” and then changed back. I have checked the profile page on the server and it definately says “their”. It seems completely illogical to me. But it is getting “his” from somewhere. Could it be a binary/compiled file from somewhere?
Anyway here is what the profile.php page says.
Here is the relevant snippet:
==========================
function _aoc_wall_profile( $args ) {
global $alkivia;
$tdomain = $alkivia->id;
extract($args, EXTR_SKIP);
switch ( $object_action ) {
case ‘update’ :
$text = sprintf(__(‘%s updated their profile data.’, $tdomain), aoc_user_anchor($owner_id));
break;
case ‘image’ :
$text = sprintf(__(‘%s selected a new profile image.’, $tdomain), aoc_user_anchor($owner_id));
break;
default :
$text = $event_params[‘display’];
}
return $text;
}
==========================