--- opengraph_meta.module	2011-10-19 15:48:15.000000000 -0400
+++ opengraph_meta.patched.module	2011-10-19 15:47:38.000000000 -0400
@@ -115,8 +115,8 @@
     if (!empty($image_paths)) {
       $image_selector_options = array();
       foreach ($image_paths as $path) {
-        $abs_path = url($path);
-        $image_selector_options[$path] = "<img src=\"$abs_path\" alt=\"$path\" title=\"$path\" width=\"32px\" height=\"32px\" />";
+        $abs_path = url(ltrim($path,'/'));
+        $image_selector_options[$path] = "<img src=\"$abs_path\" alt=\"$path\" title=\"$path\" width=\"32px\" height=\"32px\" class=\"opengraph-thumb\" />";
       }
       $form['opengraph_meta'][OpenGraphMeta::IMAGE] = array(
         '#title' => t('Thumbnail image'),
@@ -124,6 +124,7 @@
         '#default_value' => !empty($node->opengraph_meta) ? $node->opengraph_meta[OpenGraphMeta::IMAGE] : '',
         '#description' => t('The thumbnail image that will get shown in e.g. a Facebook preview. If left unset then then the first available image will be used. If none available then the global fallback image will be used.'),
         '#options' => $image_selector_options,
+        '#attributes' => array('class' => 'opengraph-thumbs-wrapper clearfix'),
       );
     }
   }
