Index: bookmark-template.php
===================================================================
--- bookmark-template.php	(revision 20429)
+++ bookmark-template.php	(working copy)
@@ -26,6 +26,8 @@
  *		of the bookmark.
  * 'show_images' - Default is 1 (integer). Whether to show link image if
  *		available.
+ * 'img_after' - Default is '' (string). The html or text to display between the
+ *		image and the name.
  * 'show_name' - Default is 0 (integer). Whether to show link name if
  *		available.
  * 'before' - Default is '<li>' (string). The html or text to prepend to each
@@ -53,7 +55,7 @@
 		'show_updated' => 0, 'show_description' => 0,
 		'show_images' => 1, 'show_name' => 0,
 		'before' => '<li>', 'after' => '</li>', 'between' => "\n",
-		'show_rating' => 0, 'link_before' => '', 'link_after' => ''
+		'show_rating' => 0, 'link_before' => '', 'link_after' => '', 'img_after' => ''
 	);
 
 	$r = wp_parse_args( $args, $defaults );
@@ -103,9 +105,10 @@
 		if ( $bookmark->link_image != null && $show_images ) {
 			if ( strpos($bookmark->link_image, 'http') === 0 )
 				$output .= "<img src=\"$bookmark->link_image\" $alt $title />";
+				$output .= $img_after;
 			else // If it's a relative path
 				$output .= "<img src=\"" . get_option('siteurl') . "$bookmark->link_image\" $alt $title />";
-
+				$output .= $img_after;
 			if ( $show_name )
 				$output .= " $name";
 		} else {
