From 29dccf9f7b1cb734957334ca4ebe74428a29a941 Mon Sep 17 00:00:00 2001 From: nikitozzzzzzz Date: Tue, 17 Oct 2017 15:02:33 +0300 Subject: [PATCH] - fixed issue #325 with wrong loaded gravatar images; --- includes/um-short-functions.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/includes/um-short-functions.php b/includes/um-short-functions.php index 32e3ab99..4bd94cc6 100644 --- a/includes/um-short-functions.php +++ b/includes/um-short-functions.php @@ -1670,7 +1670,9 @@ } - return '' . $image_alt . ''; + $default_avatar = um_get_default_avatar_uri(); + + return '' . $image_alt . ''; break;