change default profile photo to something more interesting than a reddish brown square

This commit is contained in:
friendica
2012-03-20 15:41:06 -07:00
parent 92ef36ad61
commit 894278dbcc
9 changed files with 10 additions and 10 deletions

View File

@@ -55,7 +55,7 @@ function nav(&$a) {
// user info
$r = q("SELECT micro FROM contact WHERE uid=%d AND self=1", intval($a->user['uid']));
$userinfo = array(
'icon' => (count($r) ? $r[0]['micro']: $a->get_baseurl($ssl_state)."/images/default-profile-mm.jpg"),
'icon' => (count($r) ? $r[0]['micro']: $a->get_baseurl($ssl_state)."/images/person-48.jpg"),
'name' => $a->user['username'],
);