From 8cf13570c334e49b897d1a8dfb31eb50c39ffa34 Mon Sep 17 00:00:00 2001 From: ryan Date: Tue, 26 Sep 2006 14:45:15 +0000 Subject: [PATCH] Show link images by default, if they are defined. git-svn-id: http://svn.automattic.com/wordpress/trunk@4256 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/bookmark-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/bookmark-template.php b/wp-includes/bookmark-template.php index 8f82f0cea9..a56facf4af 100644 --- a/wp-includes/bookmark-template.php +++ b/wp-includes/bookmark-template.php @@ -246,7 +246,7 @@ function _walk_bookmarks($bookmarks, $args = '' ) { else parse_str($args, $r); - $defaults = array('show_updated' => 0, 'show_description' => 0, 'show_images' => 0, 'before' => '
  • ', + $defaults = array('show_updated' => 0, 'show_description' => 0, 'show_images' => 1, 'before' => '
  • ', 'after' => '
  • ', 'between' => "\n"); $r = array_merge($defaults, $r); extract($r);