users birthday
file: includes\libs\dashboard.module.php
function friends_birthday
change line
[code]
$content .= '<li>'.url('u/'.$user['username'],$user['username']).' - <strong>'.$user['birthmonth'].'/'.$user['birthday'].'</strong></li>';
[/code]
to
[code]
$content .= '<li>'.url('u/'.$user['username'],$user['fullname']).' - <strong>'.$user['birthmonth'].'/'.$user['birthday'].'</strong></li>';
[/code]
friends.
file includes\libs\friends.module.php
function approve
change line
[code]
stream_publish(
t(
'became a friend of {1}',
url('u/'.$user['username'],$user['fullname'],'','',1)
)
);
[/code]
in
[code]
stream_publish(
t(
'became a friend of {1}',
url('u/'.$user['username'],$user['username'],'','',1)
)
);
[/code] |