if ( $bookmark->link_image != null && $show_images ) { if ( strpos($bookmark->link_image, 'http') === 0 ) $output .= "
link_image\" $alt $title />
"; else // If it's a relative path $output .= "
link_image\" $alt $title />
"; if ( $show_name ) $output .= "
$name"; } else { $output .= "
$name"; } $output .= $link_after; $output .= ''; if ( $show_updated && $bookmark->recently_updated ) $output .= get_option('links_recently_updated_append'); if ( $show_description && '' != $desc ) $output .= $between . "$desc"; if ( $show_rating ) $output .= $between . sanitize_bookmark_field('link_rating', $bookmark->link_rating, $bookmark->link_id, 'display'); $output .= "$after\n
"; } // end while