Make WordPress Core

Changeset 26081


Ignore:
Timestamp:
11/11/2013 01:31:19 PM (13 years ago)
Author:
SergeyBiryukov
Message:

Fix docblock formatting. fixes #25893.

Location:
trunk/src
Files:
11 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/edit-link-form.php

    r26080 r26081  
    3535
    3636/**
    37 * Fires when link-specific meta boxes are added.
    38 *
    39 * @since 3.0.0
    40 *
    41 * @param object $link Link object.
    42 */
     37 * Fires when link-specific meta boxes are added.
     38 *
     39 * @since 3.0.0
     40 *
     41 * @param object $link Link object.
     42 */
    4343do_action( 'add_meta_boxes_link', $link );
    4444
  • trunk/src/wp-admin/includes/class-wp-theme-install-list-table.php

    r25070 r26081  
    161161        }
    162162
    163         /*
     163        /**
    164164         * Prints a theme from the WordPress.org API.
    165165         *
     
    248248        }
    249249
    250         /*
     250        /**
    251251         * Prints the wrapper for the theme installer.
    252252         */
     
    273273        }
    274274
    275         /*
     275        /**
    276276         * Prints the wrapper for the theme installer with a provided theme's data.
    277277         * Used to make the theme installer work for no-js.
     
    292292        }
    293293
    294         /*
     294        /**
    295295         * Prints the info for a theme (to be used in the theme installer modal).
    296296         *
  • trunk/src/wp-admin/js/customize-controls.js

    r25681 r26081  
    22        var api = wp.customize;
    33
    4         /*
     4        /**
    55         * @param options
    66         * - previewer - The Previewer instance to sync with.
  • trunk/src/wp-admin/options-writing.php

    r25868 r26081  
    3939
    4040/**
    41 * Toggle site update services configuration functionality.
    42 *
    43 * @since 3.0.0
    44 *
    45 * @param bool True or false, based on whether update services configuration is enabled or not.
    46 */
     41 * Toggle site update services configuration functionality.
     42 *
     43 * @since 3.0.0
     44 *
     45 * @param bool True or false, based on whether update services configuration is enabled or not.
     46 */
    4747if ( apply_filters( 'enable_update_services_configuration', true ) ) {
    4848        get_current_screen()->add_help_tab( array(
  • trunk/src/wp-includes/capabilities.php

    r25695 r26081  
    685685        }
    686686
    687         /*
     687        /**
    688688         * Return an array representation.
    689689         *
  • trunk/src/wp-includes/comment.php

    r25868 r26081  
    397397        }
    398398
    399         /*
     399        /**
    400400         * Used internally to generate an SQL string for searching across multiple columns
    401401         *
  • trunk/src/wp-includes/js/plupload/wp-plupload.js

    r23162 r26081  
    77                return;
    88
    9         /*
     9        /**
    1010         * An object that helps create a WordPress uploader using plupload.
    1111         *
  • trunk/src/wp-includes/link-template.php

    r25966 r26081  
    737737
    738738/**
    739 * Retrieve permalink for search.
    740 *
    741 * @since  3.0.0
    742 * @param string $query Optional. The query string to use. If empty the current query is used.
    743 * @return string
    744 */
     739 * Retrieve permalink for search.
     740 *
     741 * @since  3.0.0
     742 *
     743 * @param string $query Optional. The query string to use. If empty the current query is used.
     744 * @return string
     745 */
    745746function get_search_link( $query = '' ) {
    746747        global $wp_rewrite;
  • trunk/src/wp-includes/query.php

    r26061 r26081  
    17131713        }
    17141714
    1715         /*
     1715        /**
    17161716         * Parses various taxonomy related query vars.
    17171717         *
  • trunk/src/wp-includes/update.php

    r25956 r26081  
    453453}
    454454
    455 /*
     455/**
    456456 * Collect counts and UI strings for available updates
    457457 *
  • trunk/src/wp-includes/user.php

    r25997 r26081  
    619619        }
    620620
    621         /*
     621        /**
    622622         * Used internally to generate an SQL string for searching across multiple columns
    623623         *
Note: See TracChangeset for help on using the changeset viewer.