diff --git a/gravatar.author-pane.inc b/gravatar.author-pane.inc
new file mode 100644
index 0000000..4e9aac1
--- /dev/null
+++ b/gravatar.author-pane.inc
@@ -0,0 +1,15 @@
+<?php
+
+/**
+ * @file
+ *   Author Pane module compatibility.
+ */
+
+/**
+ * Implementation of hook_preprocess_author_pane().
+ */
+function gravatar_preprocess_author_pane(&$variables) {
+  // Allow Gravatar to replace the User Picture.
+  gravatar_preprocess_user_picture($variables);
+  $variables['picture'] = $variables['user_picture'];
+}
