From: Zvi ben Yaakov (a.k.a rdc) Date: Sun, 17 Jun 2012 20:22:37 +0000 (+0300) Subject: Enabled Profile photo revisions to be displayed in navigation bar X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b0021a4637084e777ae478d34882da947655c7b2;p=friendica.git Enabled Profile photo revisions to be displayed in navigation bar --- diff --git a/include/nav.php b/include/nav.php index 909ba9b541..784fe1a51b 100644 --- a/include/nav.php +++ b/include/nav.php @@ -53,9 +53,9 @@ function nav(&$a) { $nav['usermenu'][] = Array('notes/', t('Personal notes'), "", t('Your personal photos')); // user info - $r = q("SELECT micro FROM contact WHERE uid=%d AND self=1", intval($a->user['uid'])); + $r = q("SELECT micro,avatar-date 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/person-48.jpg"), + 'icon' => (count($r) ? $r[0]['micro']."?rev=".urlencode($r[0]['avatar-date']): $a->get_baseurl($ssl_state)."/images/person-48.jpg"), 'name' => $a->user['username'], );