Make WordPress Core

Ticket #20788: 20788.2.diff

File 20788.2.diff, 1.0 KB (added by MikeHansenMe, 10 years ago)

Refresh + docs

  • src/wp-includes/default-widgets.php

     
    153153                 *
    154154                 * @see wp_list_bookmarks()
    155155                 *
    156                  * @param array $args An array of arguments to retrieve the links list.
     156                 * @param array $args     An array of arguments to retrieve the links list.
     157                 * @param array $instance An array of the current instance of the widget.
    157158                 */
    158159                wp_list_bookmarks( apply_filters( 'widget_links_args', array(
    159160                        'title_before' => $args['before_title'], 'title_after' => $args['after_title'],
     
    161162                        'show_images' => $show_images, 'show_description' => $show_description,
    162163                        'show_name' => $show_name, 'show_rating' => $show_rating,
    163164                        'category' => $category, 'class' => 'linkcat widget',
    164                         'orderby' => $orderby, 'order' => $order,
    165                         'limit' => $limit,
    166                 ) ) );
     165                        'orderby' => $orderby, 'order' => $order, 'limit' => $limit,
     166                ), $instance ) );
    167167        }
    168168
    169169        /**