Make WordPress Core


Ignore:
Timestamp:
02/05/2008 06:47:27 AM (17 years ago)
Author:
ryan
Message:

Trailing whitespace cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/deprecated.php

    r6551 r6726  
    447447 * @param string    $between    Optional. The html to output between the link/image and it's description. Not used if no image or $show_images is true.
    448448 * @param bool      $show_images Optional. Whether to show images (if defined).
    449  * @param string    $orderby    Optional. The order to output the links. E.g. 'id', 'name', 'url', 'description' or 'rating'. Or maybe owner. 
     449 * @param string    $orderby    Optional. The order to output the links. E.g. 'id', 'name', 'url', 'description' or 'rating'. Or maybe owner.
    450450 *      If you start the name with an underscore the order will be reversed. You can also specify 'rand' as the order which will return links in a
    451451 *      random order.
     
    506506 *
    507507 * @param string $cat_name The category name to use. If no match is found uses all.
    508  * @param string $orderby The order to output the links. E.g. 'id', 'name', 'url', 'description', or 'rating'. 
    509  *      Or maybe owner. If you start the name with an underscore the order will be reversed. You can also 
     508 * @param string $orderby The order to output the links. E.g. 'id', 'name', 'url', 'description', or 'rating'.
     509 *      Or maybe owner. If you start the name with an underscore the order will be reversed. You can also
    510510 *      specify 'rand' as the order which will return links in a random order.
    511511 * @param int $limit Limit to X entries. If not specified, all entries are shown.
     
    559559 * @param int $category The category to use. If no category supplied uses all
    560560 * @param string $orderby the order to output the links. E.g. 'id', 'name', 'url',
    561  *      'description', or 'rating'. Or maybe owner. If you start the name with an 
     561 *      'description', or 'rating'. Or maybe owner. If you start the name with an
    562562 *      underscore the order will be reversed. You can also specify 'rand' as the
    563563 *      order which will return links in a random order.
     
    590590 * @param bool $show_images Whether to show images (if defined).
    591591 * @param string $orderby the order to output the links. E.g. 'id', 'name', 'url',
    592  *      'description', or 'rating'. Or maybe owner. If you start the name with an 
     592 *      'description', or 'rating'. Or maybe owner. If you start the name with an
    593593 *      underscore the order will be reversed. You can also specify 'rand' as the
    594594 *      order which will return links in a random order.
     
    617617 * @param bool $show_images Whether to show images (if defined).
    618618 * @param string $orderby The order to output the links. E.g. 'id', 'name', 'url',
    619  *      'description', or 'rating'. Or maybe owner. If you start the name with an 
     619 *      'description', or 'rating'. Or maybe owner. If you start the name with an
    620620 *      underscore the order will be reversed. You can also specify 'rand' as the
    621621 *      order which will return links in a random order.
     
    670670 * @return unknown
    671671 */
    672 function list_cats($optionall = 1, $all = 'All', $sort_column = 'ID', $sort_order = 'asc', $file = '', $list = true, $optiondates = 0, 
    673                    $optioncount = 0, $hide_empty = 1, $use_desc_for_title = 1, $children=false, $child_of=0, $categories=0, 
     672function list_cats($optionall = 1, $all = 'All', $sort_column = 'ID', $sort_order = 'asc', $file = '', $list = true, $optiondates = 0,
     673                   $optioncount = 0, $hide_empty = 1, $use_desc_for_title = 1, $children=false, $child_of=0, $categories=0,
    674674                   $recurse=0, $feed = '', $feed_image = '', $exclude = '', $hierarchical=false) {
    675675    _deprecated_function(__FUNCTION__, '0.0', 'wp_list_categories()');
     
    867867 * @return string
    868868 */
    869 function link_pages($before='<br />', $after='<br />', $next_or_number='number', $nextpagelink='next page', $previouspagelink='previous page', 
     869function link_pages($before='<br />', $after='<br />', $next_or_number='number', $nextpagelink='next page', $previouspagelink='previous page',
    870870                    $pagelink='%', $more_file='') {
    871871    _deprecated_function(__FUNCTION__, '0.0', 'wp_link_pages()');
     
    10691069 *
    10701070 * @param string $order Sort link categories by 'name' or 'id'
    1071  * @param string $$deprecated Not Used 
     1071 * @param string $$deprecated Not Used
    10721072 */
    10731073function get_links_list($order = 'name', $deprecated = '') {
     
    12151215
    12161216/**
    1217  * get_author_rss_link() - Print/Return link to author RSS feed 
     1217 * get_author_rss_link() - Print/Return link to author RSS feed
    12181218 *
    12191219 * @since 1.2
     
    12361236
    12371237/**
    1238  * comments_rss() - Return link to the post RSS feed 
     1238 * comments_rss() - Return link to the post RSS feed
    12391239 *
    12401240 * @since 1.5
Note: See TracChangeset for help on using the changeset viewer.