diff --git a/entity_dependency.core.inc b/entity_dependency.core.inc
index 6b94bc9..e959296 100644
--- a/entity_dependency.core.inc
+++ b/entity_dependency.core.inc
@@ -28,6 +28,17 @@ function node_entity_dependencies($entity, $entity_type) {
 /**
  * Implements hook_entity_dependenies().
  */
+function user_entity_dependencies($entity, $entity_type) {
+  if ($entity_type == 'user' && variable_get('user_pictures', 0) && !empty($entity->picture)) {
+    $dependencies = array();
+    $dependencies[] = array('type' => 'file', 'id' => $entity->picture->fid);
+    return $dependencies;
+  }
+}
+
+/**
+ * Implements hook_entity_dependenies().
+ */
 function comment_entity_dependencies($entity, $entity_type) {
   if ($entity_type == 'comment') {
     $dependencies = array();
