From 93ffba58cc10fc793821ba16de88cdfb271ea5b8 Mon Sep 17 00:00:00 2001 From: Klaus Weidenbach Date: Tue, 21 Feb 2012 00:54:34 +0100 Subject: Rename gravatar_img() more generic to avatar_img(). I would like to extend the Gravatar support to also use Libravatar, a decentralized avatar service. First step to extract Gravatar from core and put it into its own plugin. Later the Libravatar plugin can be done, too as a plugin. --- include/network.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/network.php') diff --git a/include/network.php b/include/network.php index 38d0980d5..59705634b 100644 --- a/include/network.php +++ b/include/network.php @@ -692,13 +692,13 @@ function allowed_email($email) { }} -if(! function_exists('gravatar_img')) { -function gravatar_img($email) { +if(! function_exists('avatar_img')) { +function avatar_img($email) { $size = 175; $opt = 'identicon'; // psuedo-random geometric pattern if not found $rating = 'pg'; $hash = md5(trim(strtolower($email))); - + $url = 'http://www.gravatar.com/avatar/' . $hash . '.jpg' . '?s=' . $size . '&d=' . $opt . '&r=' . $rating; -- cgit v1.2.3