From: friendica Date: Tue, 20 Mar 2012 22:43:34 +0000 (-0700) Subject: missed a default profile photo replacement in notifications X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a72a23b6d6e2bf82bbeac04db52ac2fa6f9e231f;p=friendica.git missed a default profile photo replacement in notifications --- diff --git a/mod/notifications.php b/mod/notifications.php index 633d7d4ecf..ff131010f0 100755 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -191,7 +191,7 @@ function notifications_content(&$a) { '$uid' => $_SESSION['uid'], '$intro_id' => $rr['intro_id'], '$contact_id' => $rr['contact-id'], - '$photo' => ((x($rr,'photo')) ? $rr['photo'] : "images/default-profile.jpg"), + '$photo' => ((x($rr,'photo')) ? $rr['photo'] : "images/person-175.jpg"), '$fullname' => $rr['name'], '$hidden' => array('hidden', t('Hide this contact from others'), ($rr['hidden'] == 1), ''), '$activity' => array('activity', t('Post a new friend activity'), 1, t('if applicable')),