Make WordPress Core

Changeset 15842


Ignore:
Timestamp:
10/19/2010 07:38:42 AM (13 years ago)
Author:
nacin
Message:

Full @since's for 3.1.0.

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/default-list-tables.php

    r15807 r15842  
    652652     * Outputs the hidden row displayed when inline editing
    653653     *
    654      * @since 3.1
     654     * @since 3.1.0
    655655     */
    656656    function inline_edit() {
     
    17201720     * Outputs the hidden row displayed when inline editing
    17211721     *
    1722      * @since 3.1
     1722     * @since 3.1.0
    17231723     */
    17241724    function inline_edit() {
  • trunk/wp-includes/functions.php

    r15839 r15842  
    43424342 * Finds hierarchy loops using a callback function that maps objects to parents.
    43434343 *
    4344  * @since 3.1
     4344 * @since 3.1.0
     4345 * @access private
    43454346 *
    43464347 * @param callback $callback function that accepts ( ID, callback_arg, ... ) and outputs parent_ID
     
    43494350 * @param array $override an array of ( ID => parent_ID, ... ) to use instead of $callback
    43504351 * @param array $callback_arg optional additional arguments to send to $callback
    4351  *
    4352  * @internal
    4353  *
    43544352 * @return array IDs of all members of loop
    43554353 */
     
    43694367 * If the hare ever laps the tortoise, there must be a loop.
    43704368 *
    4371  * @since 3.1
     4369 * @since 3.1.0
     4370 * @access private
    43724371 *
    43734372 * @param callback $callback function that accupts ( ID, callback_arg, ... ) and outputs parent_ID
     
    43784377 *             Only set to true if you already know the given $start is part of a loop
    43794378 *             (otherwise the returned array might include branches)
    4380  *
    4381  * @internal
    4382  *
    43834379 * @return mixed scalar ID of some arbitrary member of the loop, or array of IDs of all members of loop if $_return_loop
    43844380 */
  • trunk/wp-includes/link-template.php

    r15819 r15842  
    676676 * Retrieve edit term url.
    677677 *
    678  * @since 3.1
     678 * @since 3.1.0
    679679 *
    680680 * @param int $term_id Term ID
     
    707707 * Display or retrieve edit term link with formatting.
    708708 *
    709  * @since 3.1
     709 * @since 3.1.0
    710710 *
    711711 * @param string $link Optional. Anchor text.
  • trunk/wp-includes/post.php

    r15841 r15842  
    495495 *  Check if a post has a particular format
    496496 *
    497  * @since 3.1
    498  *
     497 * @since 3.1.0
    499498 * @uses has_term()
    500499 *
     
    48044803 * Returns the post's parent's post_ID
    48054804 *
    4806  * @since 3.1
     4805 * @since 3.1.0
    48074806 *
    48084807 * @param int $post_id
     
    48234822 * Attached to the wp_insert_post_parent filter.
    48244823 *
    4825  * @since 3.1
     4824 * @since 3.1.0
    48264825 * @uses wp_find_hierarchy_loop()
    48274826 *
  • trunk/wp-includes/taxonomy.php

    r15825 r15842  
    29002900 * Returns the term's parent's term_ID
    29012901 *
    2902  * @since 3.1
     2902 * @since 3.1.0
    29032903 *
    29042904 * @param int $term_id
     
    29202920 * Attached to the wp_update_term_parent filter.
    29212921 *
    2922  * @since 3.1
     2922 * @since 3.1.0
    29232923 * @uses wp_find_hierarchy_loop()
    29242924 *
Note: See TracChangeset for help on using the changeset viewer.