From 809a0f83fad58a0c2b218fe637b294e109a87148 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Tue, 26 Sep 2006 14:45:15 +0000 Subject: [PATCH] Show link images by default, if they are defined. git-svn-id: https://develop.svn.wordpress.org/trunk@4256 602fd350-edb4-49c9-b593-d223f7449a82 --- 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);