From 918e818964b7dbce7fe0d31ce7d8f1af65d350d1 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Mon, 11 Oct 2010 19:43:23 +0000 Subject: - Patch #937562 by tim.plunkett, chx, justinrandell: fatal Error Call to a member function getDirectoryPath() on a non-object when Default picture is set. --- modules/user/user.module | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'modules/user/user.module') diff --git a/modules/user/user.module b/modules/user/user.module index 874efae6d..45ea7f280 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -1409,7 +1409,9 @@ function template_preprocess_user_picture(&$variables) { } if (isset($filepath)) { $alt = t("@user's picture", array('@user' => format_username($account))); - if (module_exists('image') && $style = variable_get('user_picture_style', '')) { + // If the image does not have a valid Drupal scheme (for eg. HTTP), + // don't load image styles. + if (module_exists('image') && file_valid_uri($filepath) && $style = variable_get('user_picture_style', '')) { $variables['user_picture'] = theme('image_style', array('style_name' => $style, 'path' => $filepath, 'alt' => $alt, 'title' => $alt)); } else { -- cgit v1.2.3