Make WordPress Core

Changeset 26868


Ignore:
Timestamp:
12/24/2013 06:56:05 PM (11 years ago)
Author:
DrewAPicture
Message:

First there were two, and now there are three -- in the @since versions that came before and that shall be. And so it will be, says nacin.

Props JustinSainton, SergeyBiryukov, DrewAPicture.
Fixes #26713.

Location:
trunk/src
Files:
39 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-activate.php

    r25690 r26868  
    2828 * Fires before the Site Activation page is loaded.
    2929 *
    30  * @since 3.0
     30 * @since 3.0.0
    3131 */
    3232do_action( 'activate_header' );
     
    4141     * Fires before the Site Activation page is loaded, but on the wp_head action.
    4242     *
    43      * @since 3.0
     43     * @since 3.0.0
    4444     */
    4545    do_action( 'activate_wp_head' );
  • trunk/src/wp-admin/admin-functions.php

    r19712 r26868  
    55 * This file is deprecated, use 'wp-admin/includes/admin.php' instead.
    66 *
    7  * @deprecated 2.5
     7 * @deprecated 2.5.0
    88 * @package WordPress
    99 * @subpackage Administration
  • trunk/src/wp-admin/custom-header.php

    r26518 r26868  
    178178     * Set up the enqueue for the CSS files
    179179     *
    180      * @since 2.7
     180     * @since 2.7.0
    181181     */
    182182    function css_includes() {
  • trunk/src/wp-admin/includes/ajax-actions.php

    r26793 r26868  
    260260 * Contrary to normal success AJAX response ("1"), die with time() on success.
    261261 *
    262  * @since 2.7
     262 * @since 2.7.0
    263263 *
    264264 * @param int $comment_id
  • trunk/src/wp-admin/includes/class-ftp-pure.php

    r23425 r26868  
    44 *
    55 * @package PemFTP
    6  * @since 2.5
     6 * @since 2.5.0
    77 *
    88 * @version 1.0
     
    1818 * @package PemFTP
    1919 * @subpackage Pure
    20  * @since 2.5
     20 * @since 2.5.0
    2121 *
    2222 * @version 1.0
  • trunk/src/wp-admin/includes/class-ftp-sockets.php

    r23425 r26868  
    44 *
    55 * @package PemFTP
    6  * @since 2.5
     6 * @since 2.5.0
    77 *
    88 * @version 1.0
     
    1818 * @package PemFTP
    1919 * @subpackage Socket
    20  * @since 2.5
     20 * @since 2.5.0
    2121 *
    2222 * @version 1.0
  • trunk/src/wp-admin/includes/class-wp-theme-install-list-table.php

    r26389 r26868  
    359359     * Send required variables to JavaScript land
    360360     *
    361      * @since 3.4
     361     * @since 3.4.0
    362362     * @access private
    363363     *
     
    373373     * Check to see if the theme is already installed.
    374374     *
    375      * @since 3.4
     375     * @since 3.4.0
    376376     * @access private
    377377     *
  • trunk/src/wp-admin/includes/file.php

    r25869 r26868  
    192192 * and moving the file to the appropriate directory within the uploads directory.
    193193 *
    194  * @since 2.0
     194 * @since 2.0.0
    195195 *
    196196 * @uses wp_handle_upload_error
  • trunk/src/wp-admin/includes/misc.php

    r26814 r26868  
    347347 * Saves option for number of rows when listing posts, pages, comments, etc.
    348348 *
    349  * @since 2.8
     349 * @since 2.8.0
    350350**/
    351351function set_screen_options() {
     
    649649 * Check lock status for posts displayed on the Posts screen
    650650 *
    651  * @since 3.6
     651 * @since 3.6.0
    652652 */
    653653function wp_check_locked_posts( $response, $data, $screen_id ) {
     
    680680 * Check lock status on the New/Edit Post screen and refresh the lock
    681681 *
    682  * @since 3.6
     682 * @since 3.6.0
    683683 */
    684684function wp_refresh_post_lock( $response, $data, $screen_id ) {
     
    719719 * Check nonce expiration on the New/Edit Post screen and refresh if needed
    720720 *
    721  * @since 3.6
     721 * @since 3.6.0
    722722 */
    723723function wp_refresh_post_nonces( $response, $data, $screen_id ) {
  • trunk/src/wp-admin/includes/plugin.php

    r26851 r26868  
    14131413 * If the slug hasn't been registered properly no url will be returned
    14141414 *
    1415  * @since 3.0
     1415 * @since 3.0.0
    14161416 *
    14171417 * @param string $menu_slug The slug name to refer to this menu by (should be unique for this menu)
  • trunk/src/wp-admin/includes/template.php

    r26736 r26868  
    19501950 * Output the HTML for restoring the post data from DOM storage
    19511951 *
    1952  * @since 3.6
     1952 * @since 3.6.0
    19531953 * @access private
    19541954 */
  • trunk/src/wp-admin/includes/user.php

    r26503 r26868  
    1010 * Creates a new user from the "Users" form using $_POST information.
    1111 *
    12  * @since 2.0
     12 * @since 2.0.0
    1313 *
    1414 * @return null|WP_Error|int Null when adding user, WP_Error or User ID integer when no parameters.
     
    2323 * Used on user-edit.php and profile.php to manage and process user options, passwords etc.
    2424 *
    25  * @since 2.0
     25 * @since 2.0.0
    2626 *
    2727 * @param int $user_id Optional. User ID.
     
    194194 * user management.
    195195 *
    196  * @since 2.8
     196 * @since 2.8.0
    197197 *
    198198 * @return unknown
  • trunk/src/wp-admin/js/theme-install.js

    r26323 r26868  
    130130 * Class that provides infinite scroll for Themes admin screens
    131131 *
    132  * @since 3.4
     132 * @since 3.4.0
    133133 *
    134134 * @uses ajaxurl
     
    148148         * Initializer
    149149         *
    150          * @since 3.4
     150         * @since 3.4.0
    151151         * @access private
    152152         */
     
    188188         * If so, requests another page of content from self.ajax().
    189189         *
    190          * @since 3.4
     190         * @since 3.4.0
    191191         * @access private
    192192         */
     
    205205         * Applies results passed from this.ajax() to $outList
    206206         *
    207          * @since 3.4
     207         * @since 3.4.0
    208208         * @access private
    209209         *
     
    228228         * Queries next page of themes
    229229         *
    230          * @since 3.4
     230         * @since 3.4.0
    231231         * @access private
    232232         */
  • trunk/src/wp-admin/update-core.php

    r26851 r26868  
    134134 * Display upgrade WordPress for downloading latest or upgrading automatically form.
    135135 *
    136  * @since 2.7
     136 * @since 2.7.0
    137137 *
    138138 * @return null
     
    354354 * Upgrade WordPress core display.
    355355 *
    356  * @since 2.7
     356 * @since 2.7.0
    357357 *
    358358 * @return null
  • trunk/src/wp-admin/upgrade-functions.php

    r19712 r26868  
    44 * wp-admin/includes/upgrade.php instead.
    55 *
    6  * @deprecated 2.5
     6 * @deprecated 2.5.0
    77 * @package WordPress
    88 * @subpackage Administration
  • trunk/src/wp-includes/atomlib.php

    r24190 r26868  
    88 * @author Elias Torres <elias@torrez.us>
    99 * @version 0.4
    10  * @since 2.3
     10 * @since 2.3.0
    1111 */
    1212
  • trunk/src/wp-includes/author-template.php

    r25429 r26868  
    1414 * Retrieve the author of the current post.
    1515 *
    16  * @since 1.5
     16 * @since 1.5.0
     17 *
    1718 * @uses $authordata The current author's DB object.
    1819 * @uses apply_filters() Calls 'the_author' hook on the author display name.
     
    6970 * Retrieve the author who last edited the current post.
    7071 *
    71  * @since 2.8
     72 * @since 2.8.0
     73 *
    7274 * @uses $post The current post's DB object.
    7375 * @uses get_post_meta() Retrieves the ID of the author who last edited the current post.
     
    9496 * Display the name of the author who last edited the current post.
    9597 *
    96  * @since 2.8
     98 * @since 2.8.0
     99 *
    97100 * @see get_the_author()
    98101 * @return string The author's display name, from get_the_modified_author().
     
    185188 *
    186189 * @link http://codex.wordpress.org/Template_Tags/the_author_link
    187  * @since 2.1
     190 *
     191 * @since 2.1.0
     192 *
    188193 * @uses get_the_author_link()
    189194 */
     
    195200 * Retrieve the number of posts by the author of the current post.
    196201 *
    197  * @since 1.5
     202 * @since 1.5.0
     203 *
    198204 * @uses $post The current post in the Loop's DB object.
    199205 * @uses count_user_posts()
  • trunk/src/wp-includes/cache.php

    r25451 r26868  
    164164 * Saves the data to the cache.
    165165 *
    166  * @since 2.0
     166 * @since 2.0.0
     167 *
    167168 * @uses $wp_object_cache Object Cache Class
    168169 * @see WP_Object_Cache::set()
     
    257258 * @package WordPress
    258259 * @subpackage Cache
    259  * @since 2.0
     260 * @since 2.0.0
    260261 */
    261262class WP_Object_Cache {
  • trunk/src/wp-includes/canonical.php

    r25868 r26868  
    468468 * DO NOT use this in plugin code.
    469469 *
    470  * @since 3.4
     470 * @since 3.4.0
    471471 * @access private
    472472 *
  • trunk/src/wp-includes/category-template.php

    r26588 r26868  
    10431043 * Retrieve tag description.
    10441044 *
    1045  * @since 2.8
     1045 * @since 2.8.0
    10461046 *
    10471047 * @param int $tag Optional. Tag ID. Will use global tag ID by default.
     
    10551055 * Retrieve term description.
    10561056 *
    1057  * @since 2.8
     1057 * @since 2.8.0
    10581058 *
    10591059 * @param int $term Optional. Term ID. Will use global term ID by default.
  • trunk/src/wp-includes/class-IXR.php

    r21531 r26868  
    3131 *
    3232 * @package IXR
    33  * @since 1.5
     33 * @since 1.5.0
    3434 *
    3535 * @copyright  Incutio Ltd 2010 (http://www.incutio.com)
     
    4444 *
    4545 * @package IXR
    46  * @since 1.5
     46 * @since 1.5.0
    4747 */
    4848class IXR_Value {
     
    172172 *
    173173 * @package IXR
    174  * @since 1.5
     174 * @since 1.5.0
    175175 *
    176176 */
     
    345345 *
    346346 * @package IXR
    347  * @since 1.5
     347 * @since 1.5.0
    348348 */
    349349class IXR_Server
     
    556556 *
    557557 * @package IXR
    558  * @since 1.5
     558 * @since 1.5.0
    559559 */
    560560class IXR_Request
     
    599599 *
    600600 * @package IXR
    601  * @since 1.5
     601 * @since 1.5.0
    602602 *
    603603 */
     
    751751 *
    752752 * @package IXR
    753  * @since 1.5
     753 * @since 1.5.0
    754754 */
    755755class IXR_Error
     
    793793 *
    794794 * @package IXR
    795  * @since 1.5
     795 * @since 1.5.0
    796796 */
    797797class IXR_Date {
     
    856856 *
    857857 * @package IXR
    858  * @since 1.5
     858 * @since 1.5.0
    859859 */
    860860class IXR_Base64
     
    877877 *
    878878 * @package IXR
    879  * @since 1.5
     879 * @since 1.5.0
    880880 */
    881881class IXR_IntrospectionServer extends IXR_Server
     
    10401040 *
    10411041 * @package IXR
    1042  * @since 1.5
     1042 * @since 1.5.0
    10431043 */
    10441044class IXR_ClientMulticall extends IXR_Client
  • trunk/src/wp-includes/class-http.php

    r25880 r26868  
    13961396 * @link http://core.trac.wordpress.org/ticket/4011 Proxy support ticket in WordPress.
    13971397 * @link http://core.trac.wordpress.org/ticket/14636 Allow wildcard domains in WP_PROXY_BYPASS_HOSTS
    1398  * @since 2.8
     1398 * @since 2.8.0
    13991399 */
    14001400class WP_HTTP_Proxy {
     
    14031403     * Whether proxy connection should be used.
    14041404     *
    1405      * @since 2.8
     1405     * @since 2.8.0
     1406     *
    14061407     * @use WP_PROXY_HOST
    14071408     * @use WP_PROXY_PORT
     
    14161417     * Whether authentication should be used.
    14171418     *
    1418      * @since 2.8
     1419     * @since 2.8.0
     1420     *
    14191421     * @use WP_PROXY_USERNAME
    14201422     * @use WP_PROXY_PASSWORD
     
    14291431     * Retrieve the host for the proxy server.
    14301432     *
    1431      * @since 2.8
     1433     * @since 2.8.0
    14321434     *
    14331435     * @return string
     
    14431445     * Retrieve the port for the proxy server.
    14441446     *
    1445      * @since 2.8
     1447     * @since 2.8.0
    14461448     *
    14471449     * @return string
     
    14571459     * Retrieve the username for proxy authentication.
    14581460     *
    1459      * @since 2.8
     1461     * @since 2.8.0
    14601462     *
    14611463     * @return string
     
    14711473     * Retrieve the password for proxy authentication.
    14721474     *
    1473      * @since 2.8
     1475     * @since 2.8.0
    14741476     *
    14751477     * @return string
     
    14851487     * Retrieve authentication string for proxy authentication.
    14861488     *
    1487      * @since 2.8
     1489     * @since 2.8.0
    14881490     *
    14891491     * @return string
     
    14961498     * Retrieve header string for proxy authentication.
    14971499     *
    1498      * @since 2.8
     1500     * @since 2.8.0
    14991501     *
    15001502     * @return string
     
    17631765 * Includes RFC 1950, RFC 1951, and RFC 1952.
    17641766 *
    1765  * @since 2.8
     1767 * @since 2.8.0
    17661768 * @package WordPress
    17671769 * @subpackage HTTP
     
    17741776     * Supports the RFC 1951 standard.
    17751777     *
    1776      * @since 2.8
     1778     * @since 2.8.0
    17771779     *
    17781780     * @param string $raw String to compress.
     
    17931795     * original compressed string will be returned.
    17941796     *
    1795      * @since 2.8
     1797     * @since 2.8.0
    17961798     *
    17971799     * @param string $compressed String to decompress.
     
    18771879     * What encoding types to accept and their priority values.
    18781880     *
    1879      * @since 2.8
     1881     * @since 2.8.0
    18801882     *
    18811883     * @return string Types of encoding to accept.
     
    19111913     * What encoding the content used when it was compressed to send in the headers.
    19121914     *
    1913      * @since 2.8
     1915     * @since 2.8.0
    19141916     *
    19151917     * @return string Content-Encoding string to send in the header.
     
    19221924     * Whether the content be decoded based on the headers.
    19231925     *
    1924      * @since 2.8
     1926     * @since 2.8.0
    19251927     *
    19261928     * @param array|string $headers All of the available headers.
     
    19451947     * disabled.
    19461948     *
    1947      * @since 2.8
     1949     * @since 2.8.0
    19481950     *
    19491951     * @return bool
  • trunk/src/wp-includes/class-phpass.php

    r24457 r26868  
    33 * Portable PHP password hashing framework.
    44 * @package phpass
    5  * @since 2.5
     5 * @since 2.5.0
    66 * @version 0.3 / WordPress
    77 * @link http://www.openwall.com/phpass/
     
    3232 * @version 0.3 / WordPress
    3333 * @link http://www.openwall.com/phpass/
    34  * @since 2.5
     34 * @since 2.5.0
    3535 */
    3636class PasswordHash {
  • trunk/src/wp-includes/class-wp-xmlrpc-server.php

    r26120 r26868  
    33503350      * Retrieves a list of post formats used by the site
    33513351      *
    3352       * @since 3.1
     3352      * @since 3.1.0
    33533353      *
    33543354      * @param array $args Method parameters. Contains:
  • trunk/src/wp-includes/comment-template.php

    r26353 r26868  
    140140 * @global object $comment The current Comment row object.
    141141 *
    142  * @since 2.7
     142 * @since 2.7.0
    143143 *
    144144 * @param string $linktext Optional. The text to display instead of the comment author's email address. Default empty.
  • trunk/src/wp-includes/default-constants.php

    r26024 r26868  
    161161    /**
    162162     * Used to guarantee unique hash cookies
    163      * @since 1.5
     163     *
     164     * @since 1.5.0
    164165     */
    165166    if ( !defined( 'COOKIEHASH' ) ) {
  • trunk/src/wp-includes/deprecated.php

    r25640 r26868  
    5454 *
    5555 * @since 1.0.1
    56  * @deprecated 1.5
     56 * @deprecated 1.5.0
    5757 * @deprecated Use The Loop - {@link http://codex.wordpress.org/The_Loop Use new WordPress Loop}
    5858 */
     
    122122 * Prints link to the previous post.
    123123 *
    124  * @since 1.5
    125  * @deprecated 2.0
     124 * @since 1.5.0
     125 * @deprecated 2.0.0
    126126 * @deprecated Use previous_post_link()
    127127 * @see previous_post_link()
     
    160160 *
    161161 * @since 0.71
    162  * @deprecated 2.0
     162 * @deprecated 2.0.0
    163163 * @deprecated Use next_post_link()
    164164 * @see next_post_link()
     
    195195 * Whether user can create a post.
    196196 *
    197  * @since 1.5
    198  * @deprecated 2.0
     197 * @since 1.5.0
     198 * @deprecated 2.0.0
    199199 * @deprecated Use current_user_can()
    200200 * @see current_user_can()
     
    215215 * Whether user can create a post.
    216216 *
    217  * @since 1.5
    218  * @deprecated 2.0
     217 * @since 1.5.0
     218 * @deprecated 2.0.0
    219219 * @deprecated Use current_user_can()
    220220 * @see current_user_can()
     
    235235 * Whether user can edit a post.
    236236 *
    237  * @since 1.5
    238  * @deprecated 2.0
     237 * @since 1.5.0
     238 * @deprecated 2.0.0
    239239 * @deprecated Use current_user_can()
    240240 * @see current_user_can()
     
    264264 * Whether user can delete a post.
    265265 *
    266  * @since 1.5
    267  * @deprecated 2.0
     266 * @since 1.5.0
     267 * @deprecated 2.0.0
    268268 * @deprecated Use current_user_can()
    269269 * @see current_user_can()
     
    284284 * Whether user can set new posts' dates.
    285285 *
    286  * @since 1.5
    287  * @deprecated 2.0
     286 * @since 1.5.0
     287 * @deprecated 2.0.0
    288288 * @deprecated Use current_user_can()
    289289 * @see current_user_can()
     
    304304 * Whether user can delete a post.
    305305 *
    306  * @since 1.5
    307  * @deprecated 2.0
     306 * @since 1.5.0
     307 * @deprecated 2.0.0
    308308 * @deprecated Use current_user_can()
    309309 * @see current_user_can()
     
    324324 * Whether user can delete a post.
    325325 *
    326  * @since 1.5
    327  * @deprecated 2.0
     326 * @since 1.5.0
     327 * @deprecated 2.0.0
    328328 * @deprecated Use current_user_can()
    329329 * @see current_user_can()
     
    344344 * Whether user can delete a post.
    345345 *
    346  * @since 1.5
    347  * @deprecated 2.0
     346 * @since 1.5.0
     347 * @deprecated 2.0.0
    348348 * @deprecated Use current_user_can()
    349349 * @see current_user_can()
     
    364364 * Can user can edit other user.
    365365 *
    366  * @since 1.5
    367  * @deprecated 2.0
     366 * @since 1.5.0
     367 * @deprecated 2.0.0
    368368 * @deprecated Use current_user_can()
    369369 * @see current_user_can()
     
    388388 *
    389389 * @since 0.71
    390  * @deprecated 2.1
     390 * @deprecated 2.1.0
    391391 * @deprecated Use get_bookmarks()
    392392 * @see get_bookmarks()
     
    422422 *
    423423 * @since 1.0.1
    424  * @deprecated 2.1
     424 * @deprecated 2.1.0
    425425 * @deprecated Use wp_list_bookmarks()
    426426 * @see wp_list_bookmarks()
     
    460460 *
    461461 * @since 1.0.1
    462  * @deprecated 2.1
     462 * @deprecated 2.1.0
    463463 * @deprecated Use get_bookmarks()
    464464 * @see get_bookmarks()
     
    513513 *
    514514 * @since 1.0.1
    515  * @deprecated 2.1
     515 * @deprecated 2.1.0
    516516 * @deprecated Use get_bookmarks()
    517517 * @see get_bookmarks()
     
    541541 *
    542542 * @since 0.71
    543  * @deprecated 2.1
     543 * @deprecated 2.1.0
    544544 * @deprecated Use get_bookmarks()
    545545 * @see get_bookmarks()
     
    569569 *
    570570 * @since 0.71
    571  * @deprecated 2.1
     571 * @deprecated 2.1.0
    572572 * @deprecated Use get_bookmarks()
    573573 * @see get_bookmarks()
     
    597597 *
    598598 * @since 0.71
    599  * @deprecated 2.1
     599 * @deprecated 2.1.0
    600600 * @deprecated No alternative function available
    601601 *
     
    610610/**
    611611 * @since 0.71
    612  * @deprecated 2.1
     612 * @deprecated 2.1.0
    613613 * @deprecated Use wp_list_categories()
    614614 * @see wp_list_categories()
     
    645645
    646646/**
    647  * @since 1.2
    648  * @deprecated 2.1
     647 * @since 1.2.0
     648 * @deprecated 2.1.0
    649649 * @deprecated Use wp_list_categories()
    650650 * @see wp_list_categories()
     
    678678/**
    679679 * @since 0.71
    680  * @deprecated 2.1
     680 * @deprecated 2.1.0
    681681 * @deprecated Use wp_dropdown_categories()
    682682 * @see wp_dropdown_categories()
     
    714714
    715715/**
    716  * @since 1.2
    717  * @deprecated 2.1
     716 * List authors.
     717 *
     718 * @since 1.2.0
     719 * @deprecated 2.1.0
    718720 * @deprecated Use wp_list_authors()
    719721 * @see wp_list_authors()
     
    736738/**
    737739 * @since 1.0.1
    738  * @deprecated 2.1
     740 * @deprecated 2.1.0
    739741 * @deprecated Use wp_get_post_categories()
    740742 * @see wp_get_post_categories()
     
    753755 *
    754756 * @since 1.0.1
    755  * @deprecated 2.1
     757 * @deprecated 2.1.0
    756758 * @deprecated Use wp_set_post_categories()
    757759 * @see wp_set_post_categories()
     
    769771/**
    770772 * @since 0.71
    771  * @deprecated 2.1
     773 * @deprecated 2.1.0
    772774 * @deprecated Use wp_get_archives()
    773775 * @see wp_get_archives()
     
    790792 * Returns or Prints link to the author's posts.
    791793 *
    792  * @since 1.2
    793  * @deprecated 2.1
     794 * @since 1.2.0
     795 * @deprecated 2.1.0
    794796 * @deprecated Use get_author_posts_url()
    795797 * @see get_author_posts_url()
     
    814816 *
    815817 * @since 0.71
    816  * @deprecated 2.1
     818 * @deprecated 2.1.0
    817819 * @deprecated Use wp_link_pages()
    818820 * @see wp_link_pages()
     
    839841 *
    840842 * @since 0.71
    841  * @deprecated 2.1
     843 * @deprecated 2.1.0
    842844 * @deprecated Use get_option()
    843845 * @see get_option()
     
    856858 *
    857859 * @since 0.71
    858  * @deprecated 1.2
     860 * @deprecated 1.2.0
    859861 * @deprecated Use the_permalink()
    860862 * @see the_permalink()
     
    869871 *
    870872 * @since 0.71
    871  * @deprecated 2.3
     873 * @deprecated 2.3.0
    872874 * @deprecated Use the_permalink_rss()
    873875 * @see the_permalink_rss()
     
    885887 * @see get_links() for argument information that can be used in $args
    886888 * @since 1.0.1
    887  * @deprecated 2.1
     889 * @deprecated 2.1.0
    888890 * @deprecated Use wp_list_bookmarks()
    889891 * @see wp_list_bookmarks()
     
    925927 *
    926928 * @since 0.71
    927  * @deprecated 2.1
     929 * @deprecated 2.1.0
    928930 * @deprecated Use get_bookmarks()
    929931 * @see get_bookmarks()
     
    10341036 *
    10351037 * @since 1.0.1
    1036  * @deprecated 2.1
     1038 * @deprecated 2.1.0
    10371039 * @deprecated Use wp_list_bookmarks()
    10381040 * @see wp_list_bookmarks()
     
    10771079 *
    10781080 * @since 0.71
    1079  * @deprecated 2.1
     1081 * @deprecated 2.1.0
    10801082 * @deprecated {@internal Use function instead is unknown}}
    10811083 *
     
    10921094/**
    10931095 * @since 1.0.1
    1094  * @deprecated 2.1
     1096 * @deprecated 2.1.0
    10951097 * @deprecated Use sanitize_bookmark_field()
    10961098 * @see sanitize_bookmark_field()
     
    11081110 *
    11091111 * @since 0.71
    1110  * @deprecated 2.1
     1112 * @deprecated 2.1.0
    11111113 * @deprecated Use get_category()
    11121114 * @see get_category()
     
    11381140 *
    11391141 * @since 1.0.1
    1140  * @deprecated 2.5
     1142 * @deprecated 2.5.0
    11411143 * @deprecated Use post_comments_feed_link()
    11421144 * @see post_comments_feed_link()
     
    11521154 * Print/Return link to category RSS2 feed.
    11531155 *
    1154  * @since 1.2
    1155  * @deprecated 2.5
     1156 * @since 1.2.0
     1157 * @deprecated 2.5.0
    11561158 * @deprecated Use get_category_feed_link()
    11571159 * @see get_category_feed_link()
     
    11741176 * Print/Return link to author RSS feed.
    11751177 *
    1176  * @since 1.2
    1177  * @deprecated 2.5
     1178 * @since 1.2.0
     1179 * @deprecated 2.5.0
    11781180 * @deprecated Use get_author_feed_link()
    11791181 * @see get_author_feed_link()
     
    11951197 * Return link to the post RSS feed.
    11961198 *
    1197  * @since 1.5
    1198  * @deprecated 2.2
     1199 * @since 1.5.0
     1200 * @deprecated 2.2.0
    11991201 * @deprecated Use get_post_comments_feed_link()
    12001202 * @see get_post_comments_feed_link()
     
    12101212 * An alias of wp_create_user().
    12111213 *
    1212  * @since 2.0
    1213  * @deprecated 2.0
     1214 * @since 2.0.0
     1215 * @deprecated 2.0.0
    12141216 * @deprecated Use wp_create_user()
    12151217 * @see wp_create_user()
     
    12281230 * Unused function.
    12291231 *
    1230  * @deprecated 2.5
     1232 * @deprecated 2.5.0
    12311233*/
    12321234function gzip_compression() {
     
    12391241 *
    12401242 * @since 0.71
    1241  * @deprecated 2.7
     1243 * @deprecated 2.7.0
    12421244 * @deprecated Use get_comment()
    12431245 * @see get_comment()
     
    12571259 *
    12581260 * @since 0.71
    1259  * @deprecated 2.8
     1261 * @deprecated 2.8.0
    12601262 * @deprecated Use get_cat_name()
    12611263 * @see get_cat_name()
     
    12731275 *
    12741276 * @since 1.2.0
    1275  * @deprecated 2.8
     1277 * @deprecated 2.8.0
    12761278 * @deprecated Use get_term_children()
    12771279 * @see get_term_children()
     
    13101312 * Retrieve the description of the author of the current post.
    13111313 *
    1312  * @since 1.5
    1313  * @deprecated 2.8
     1314 * @since 1.5.0
     1315 * @deprecated 2.8.0
    13141316 * @deprecated Use get_the_author_meta('description')
    13151317 * @see get_the_author_meta()
     
    13261328 *
    13271329 * @since 1.0.0
    1328  * @deprecated 2.8
     1330 * @deprecated 2.8.0
    13291331 * @deprecated Use the_author_meta('description')
    13301332 * @see the_author_meta()
     
    13381340 * Retrieve the login name of the author of the current post.
    13391341 *
    1340  * @since 1.5
    1341  * @deprecated 2.8
     1342 * @since 1.5.0
     1343 * @deprecated 2.8.0
    13421344 * @deprecated Use get_the_author_meta('login')
    13431345 * @see get_the_author_meta()
     
    13541356 *
    13551357 * @since 0.71
    1356  * @deprecated 2.8
     1358 * @deprecated 2.8.0
    13571359 * @deprecated Use the_author_meta('login')
    13581360 * @see the_author_meta()
     
    13661368 * Retrieve the first name of the author of the current post.
    13671369 *
    1368  * @since 1.5
    1369  * @deprecated 2.8
     1370 * @since 1.5.0
     1371 * @deprecated 2.8.0
    13701372 * @deprecated Use get_the_author_meta('first_name')
    13711373 * @see get_the_author_meta()
     
    13821384 *
    13831385 * @since 0.71
    1384  * @deprecated 2.8
     1386 * @deprecated 2.8.0
    13851387 * @deprecated Use the_author_meta('first_name')
    13861388 * @see the_author_meta()
     
    13941396 * Retrieve the last name of the author of the current post.
    13951397 *
    1396  * @since 1.5
    1397  * @deprecated 2.8
     1398 * @since 1.5.0
     1399 * @deprecated 2.8.0
    13981400 * @deprecated Use get_the_author_meta('last_name')
    13991401 * @see get_the_author_meta()
     
    14101412 *
    14111413 * @since 0.71
    1412  * @deprecated 2.8
     1414 * @deprecated 2.8.0
    14131415 * @deprecated Use the_author_meta('last_name')
    14141416 * @see the_author_meta()
     
    14221424 * Retrieve the nickname of the author of the current post.
    14231425 *
    1424  * @since 1.5
    1425  * @deprecated 2.8
     1426 * @since 1.5.0
     1427 * @deprecated 2.8.0
    14261428 * @deprecated Use get_the_author_meta('nickname')
    14271429 * @see get_the_author_meta()
     
    14381440 *
    14391441 * @since 0.71
    1440  * @deprecated 2.8
     1442 * @deprecated 2.8.0
    14411443 * @deprecated Use the_author_meta('nickname')
    14421444 * @see the_author_meta()
     
    14501452 * Retrieve the email of the author of the current post.
    14511453 *
    1452  * @since 1.5
    1453  * @deprecated 2.8
     1454 * @since 1.5.0
     1455 * @deprecated 2.8.0
    14541456 * @deprecated Use get_the_author_meta('email')
    14551457 * @see get_the_author_meta()
     
    14661468 *
    14671469 * @since 0.71
    1468  * @deprecated 2.8
     1470 * @deprecated 2.8.0
    14691471 * @deprecated Use the_author_meta('email')
    14701472 * @see the_author_meta()
     
    14781480 * Retrieve the ICQ number of the author of the current post.
    14791481 *
    1480  * @since 1.5
    1481  * @deprecated 2.8
     1482 * @since 1.5.0
     1483 * @deprecated 2.8.0
    14821484 * @deprecated Use get_the_author_meta('icq')
    14831485 * @see get_the_author_meta()
     
    14941496 *
    14951497 * @since 0.71
    1496  * @deprecated 2.8
     1498 * @deprecated 2.8.0
    14971499 * @deprecated Use the_author_meta('icq')
    14981500 * @see the_author_meta()
     
    15061508 * Retrieve the Yahoo! IM name of the author of the current post.
    15071509 *
    1508  * @since 1.5
    1509  * @deprecated 2.8
     1510 * @since 1.5.0
     1511 * @deprecated 2.8.0
    15101512 * @deprecated Use get_the_author_meta('yim')
    15111513 * @see get_the_author_meta()
     
    15221524 *
    15231525 * @since 0.71
    1524  * @deprecated 2.8
     1526 * @deprecated 2.8.0
    15251527 * @deprecated Use the_author_meta('yim')
    15261528 * @see the_author_meta()
     
    15341536 * Retrieve the MSN address of the author of the current post.
    15351537 *
    1536  * @since 1.5
    1537  * @deprecated 2.8
     1538 * @since 1.5.0
     1539 * @deprecated 2.8.0
    15381540 * @deprecated Use get_the_author_meta('msn')
    15391541 * @see get_the_author_meta()
     
    15501552 *
    15511553 * @since 0.71
    1552  * @deprecated 2.8
     1554 * @deprecated 2.8.0
    15531555 * @deprecated Use the_author_meta('msn')
    15541556 * @see the_author_meta()
     
    15621564 * Retrieve the AIM address of the author of the current post.
    15631565 *
    1564  * @since 1.5
    1565  * @deprecated 2.8
     1566 * @since 1.5.0
     1567 * @deprecated 2.8.0
    15661568 * @deprecated Use get_the_author_meta('aim')
    15671569 * @see get_the_author_meta()
     
    15791581 * @since 0.71
    15801582 * @see the_author_meta()
    1581  * @deprecated 2.8
     1583 * @deprecated 2.8.0
    15821584 * @deprecated Use the_author_meta('aim')
    15831585 */
     
    15911593 *
    15921594 * @since 1.0.0
    1593  * @deprecated 2.8
     1595 * @deprecated 2.8.0
    15941596 * @deprecated Use get_the_author_meta('display_name')
    15951597 * @see get_the_author_meta()
     
    16061608 * Retrieve the URL to the home page of the author of the current post.
    16071609 *
    1608  * @since 1.5
    1609  * @deprecated 2.8
     1610 * @since 1.5.0
     1611 * @deprecated 2.8.0
    16101612 * @deprecated Use get_the_author_meta('url')
    16111613 * @see get_the_author_meta()
     
    16221624 *
    16231625 * @since 0.71
    1624  * @deprecated 2.8
     1626 * @deprecated 2.8.0
    16251627 * @deprecated Use the_author_meta('url')
    16261628 * @see the_author_meta()
     
    16341636 * Retrieve the ID of the author of the current post.
    16351637 *
    1636  * @since 1.5
    1637  * @deprecated 2.8
     1638 * @since 1.5.0
     1639 * @deprecated 2.8.0
    16381640 * @deprecated Use get_the_author_meta('ID')
    16391641 * @see get_the_author_meta()
     
    16501652 *
    16511653 * @since 0.71
    1652  * @deprecated 2.8
     1654 * @deprecated 2.8.0
    16531655 * @deprecated Use the_author_meta('ID')
    16541656 * @see the_author_meta()
     
    17861788 * contains a context after its last vertical bar.
    17871789 *
    1788  * @since 2.5
     1790 * @since 2.5.0
    17891791 * @uses translate()
    17901792 * @deprecated 3.0.0
     
    18351837 * Register plural strings in POT file, but don't translate them.
    18361838 *
    1837  * @since 2.5
     1839 * @since 2.5.0
    18381840 * @deprecated 2.8.0
    18391841 * @deprecated Use _n_noop()
  • trunk/src/wp-includes/feed.php

    r26644 r26868  
    5858 * @package WordPress
    5959 * @subpackage Feed
    60  * @since 2.5
     60 * @since 2.5.0
    6161 * @uses apply_filters() Calls 'default_feed' hook on the default feed string.
    6262 *
     
    447447 * @package WordPress
    448448 * @subpackage Feed
    449  * @since 2.5
     449 * @since 2.5.0
    450450 *
    451451 * @param string $data Input string
     
    485485 * @package WordPress
    486486 * @subpackage Feed
    487  * @since 2.5
     487 * @since 2.5.0
    488488 */
    489489function self_link() {
     
    519519 * Build SimplePie object based on RSS or Atom feed from URL.
    520520 *
    521  * @since 2.8
     521 * @since 2.8.0
    522522 *
    523523 * @param mixed $url URL of feed to retrieve. If an array of URLs, the feeds are merged
  • trunk/src/wp-includes/link-template.php

    r26120 r26868  
    579579 * can be requested or left blank to get the default feed.
    580580 *
    581  * @since 3.0
     581 * @since 3.0.0
    582582 *
    583583 * @param int $term_id ID of a category.
     
    17121712 * Return post pages link navigation for previous and next pages.
    17131713 *
    1714  * @since 2.8
     1714 * @since 2.8.0
    17151715 *
    17161716 * @param string|array $args Optional args.
  • trunk/src/wp-includes/nav-menu-template.php

    r25868 r26868  
    386386 *
    387387 * @access private
    388  * @since 3.0
     388 * @since 3.0.0
    389389 *
    390390 * @param array $menu_items The current menu item objects to which to add the class property information.
  • trunk/src/wp-includes/pluggable-deprecated.php

    r24320 r26868  
    5858 * Retrieve user info by email.
    5959 *
    60  * @since 2.5
     60 * @since 2.5.0
    6161 * @deprecated 3.3.0
    6262 * @deprecated Use get_user_by('email')
     
    7575 * Sets a cookie for a user who just logged in. This function is deprecated.
    7676 *
    77  * @since 1.5
    78  * @deprecated 2.5
     77 * @since 1.5.0
     78 * @deprecated 2.5.0
    7979 * @deprecated Use wp_set_auth_cookie()
    8080 * @see wp_set_auth_cookie()
     
    100100 * Clears the authentication cookie, logging the user out. This function is deprecated.
    101101 *
    102  * @since 1.5
    103  * @deprecated 2.5
     102 * @since 1.5.0
     103 * @deprecated 2.5.0
    104104 * @deprecated Use wp_clear_auth_cookie()
    105105 * @see wp_clear_auth_cookie()
     
    121121 *
    122122 * @since 2.0.3
    123  * @deprecated 2.5
     123 * @deprecated 2.5.0
    124124 * @deprecated No alternative
    125125 *
  • trunk/src/wp-includes/pluggable.php

    r26388 r26868  
    507507 * should be and compares the two.
    508508 *
    509  * @since 2.5
     509 * @since 2.5.0
    510510 *
    511511 * @param string $cookie Optional. If used, will validate contents instead of cookie's
     
    562562 * Generate authentication cookie contents.
    563563 *
    564  * @since 2.5
     564 * @since 2.5.0
     565 *
    565566 * @uses apply_filters() Calls 'auth_cookie' hook on $cookie contents, User ID
    566567 *      and expiration of cookie.
     
    589590 * Parse a cookie into its components
    590591 *
    591  * @since 2.7
     592 * @since 2.7.0
    592593 *
    593594 * @param string $cookie
     
    640641 * set, the cookies will be kept for 14 days or two weeks.
    641642 *
    642  * @since 2.5
     643 * @since 2.5.0
    643644 *
    644645 * @param int $user_id User ID
     
    688689 * Removes all of the cookies associated with authentication.
    689690 *
    690  * @since 2.5
     691 * @since 2.5.0
    691692 */
    692693function wp_clear_auth_cookie() {
     
    736737 * Checks if a user is logged in, if not it redirects them to the login page.
    737738 *
    738  * @since 1.5
     739 * @since 1.5.0
    739740 */
    740741function auth_redirect() {
     
    904905 * Sanitizes a URL for use in a redirect.
    905906 *
    906  * @since 2.3
     907 * @since 2.3.0
    907908 *
    908909 * @return string redirect-sanitized URL
     
    931932 * but only used in a few places.
    932933 *
    933  * @since 2.3
     934 * @since 2.3.0
     935 *
    934936 * @uses wp_validate_redirect() To validate the redirect is to an allowed host.
    935937 *
     
    11661168 * Notifies the moderator of the blog about a new comment that is awaiting approval.
    11671169 *
    1168  * @since 1.0
     1170 * @since 1.0.0
     1171 *
    11691172 * @uses $wpdb
    11701173 *
     
    12521255 * Notify the blog admin of a user changing password, normally via email.
    12531256 *
    1254  * @since 2.7
     1257 * @since 2.7.0
    12551258 *
    12561259 * @param object $user User Object
     
    12731276 * Notify the blog admin of a new user, normally via email.
    12741277 *
    1275  * @since 2.0
     1278 * @since 2.0.0
    12761279 *
    12771280 * @param int $user_id User ID
     
    13101313 * updated, e.g. by autosave.
    13111314 *
    1312  * @since 2.5
     1315 * @since 2.5.0
    13131316 *
    13141317 * @return int
     
    14021405 * common dictionary strings. The added values makes it harder to crack.
    14031406 *
    1404  * @since 2.5
     1407 * @since 2.5.0
    14051408 *
    14061409 * @link https://api.wordpress.org/secret-key/1.1/salt/ Create secrets for wp-config.php
     
    14861489 * instead use the other package password checking algorithm.
    14871490 *
    1488  * @since 2.5
     1491 * @since 2.5.0
     1492 *
    14891493 * @global object $wp_hasher PHPass object
    14901494 * @uses PasswordHash::HashPassword
     
    15181522 * instead use the other package password checking algorithm.
    15191523 *
    1520  * @since 2.5
     1524 * @since 2.5.0
     1525 *
    15211526 * @global object $wp_hasher PHPass object used for checking the password
    15221527 *  against the $hash + $password
     
    15601565 * Generates a random password drawn from the defined set of characters.
    15611566 *
    1562  * @since 2.5
     1567 * @since 2.5.0
    15631568 *
    15641569 * @param int $length The length of password to generate
     
    16391644 * instead use the other package password checking algorithm.
    16401645 *
    1641  * @since 2.5
     1646 * @since 2.5.0
     1647 *
    16421648 * @uses $wpdb WordPress database object for queries
    16431649 * @uses wp_hash_password() Used to encrypt the user's password before passing to the database
     
    16601666 * Retrieve the avatar for a user who provided a user ID or email address.
    16611667 *
    1662  * @since 2.5
     1668 * @since 2.5.0
     1669 *
    16631670 * @param int|string|object $id_or_email A user ID,  email address, or comment object
    16641671 * @param int $size Size of the avatar image
     
    17741781 *      the title.
    17751782 *
    1776  * @since 2.6
     1783 * @since 2.6.0
     1784 *
    17771785 * @see wp_parse_args() Used to change defaults to user defined settings.
    17781786 * @uses Text_Diff
  • trunk/src/wp-includes/plugin.php

    r25607 r26868  
    1717 * @package WordPress
    1818 * @subpackage Plugin
    19  * @since 1.5
     19 * @since 1.5.0
    2020 */
    2121
     
    9494 * @package WordPress
    9595 * @subpackage Plugin
    96  * @since 2.5
     96 * @since 2.5.0
     97 *
    9798 * @global array $wp_filter Stores all of the filters
    9899 *
     
    276277 * @package WordPress
    277278 * @subpackage Plugin
    278  * @since 1.2
     279 *
     280 * @since 1.2.0
    279281 *
    280282 * @param string $tag The filter hook to which the function to be removed is hooked.
     
    302304 * Remove all of the hooks from a filter.
    303305 *
    304  * @since 2.7
     306 * @since 2.7.0
    305307 *
    306308 * @param string $tag The filter to remove hooks from.
     
    329331 * @package WordPress
    330332 * @subpackage Plugin
    331  * @since 2.5
     333 * @since 2.5.0
    332334 *
    333335 * @return string Hook name of the current filter or action.
     
    350352 * @package WordPress
    351353 * @subpackage Plugin
    352  * @since 1.2
     354 *
     355 * @since 1.2.0
    353356 *
    354357 * @param string $tag The name of the action to which the $function_to_add is hooked.
     
    376379 * @package WordPress
    377380 * @subpackage Plugin
    378  * @since 1.2
     381 *
     382 * @since 1.2.0
     383 *
    379384 * @global array $wp_filter Stores all of the filters
    380385 * @global array $wp_actions Increments the amount of times action was triggered.
     
    439444 * @package WordPress
    440445 * @subpackage Plugin
    441  * @since 2.1
     446 * @since 2.1.0
     447 *
    442448 * @global array $wp_actions Increments the amount of times action was triggered.
    443449 *
     
    462468 * @package WordPress
    463469 * @subpackage Plugin
    464  * @since 2.1
     470 * @since 2.1.0
     471 *
    465472 * @global array $wp_filter Stores all of the filters
    466473 * @global array $wp_actions Increments the amount of times action was triggered.
     
    517524 * @package WordPress
    518525 * @subpackage Plugin
    519  * @since 2.5
     526 * @since 2.5.0
     527 *
    520528 * @see has_filter() has_action() is an alias of has_filter().
    521529 *
     
    540548 * @package WordPress
    541549 * @subpackage Plugin
    542  * @since 1.2
     550 *
     551 * @since 1.2.0
    543552 *
    544553 * @param string $tag The action hook to which the function to be removed is hooked.
     
    554563 * Remove all of the hooks from an action.
    555564 *
    556  * @since 2.7
     565 * @since 2.7.0
    557566 *
    558567 * @param string $tag The action to remove hooks from.
     
    575584 * @package WordPress
    576585 * @subpackage Plugin
    577  * @since 1.5
     586 *
     587 * @since 1.5.0
    578588 *
    579589 * @access private
     
    599609 * @package WordPress
    600610 * @subpackage Plugin
    601  * @since 2.8
     611 * @since 2.8.0
    602612 *
    603613 * @param string $file The filename of the plugin (__FILE__)
     
    612622 * @package WordPress
    613623 * @subpackage Plugin
    614  * @since 2.8
     624 * @since 2.8.0
    615625 *
    616626 * @param string $file The filename of the plugin (__FILE__)
     
    636646 * @package WordPress
    637647 * @subpackage Plugin
    638  * @since 2.0
     648 * @since 2.0.0
    639649 *
    640650 * @param string $file The filename of the plugin including the path.
     
    661671 * @package WordPress
    662672 * @subpackage Plugin
    663  * @since 2.0
     673 * @since 2.0.0
    664674 *
    665675 * @param string $file The filename of the plugin including the path.
     
    691701 * executing.
    692702 *
    693  * @since 2.7
     703 * @since 2.7.0
    694704 *
    695705 * @param string $file
     
    723733 * @package WordPress
    724734 * @subpackage Plugin
    725  * @since 2.5
     735 * @since 2.5.0
    726736 * @access private
    727737 *
  • trunk/src/wp-includes/post-thumbnail-template.php

    r25513 r26868  
    5050 * Update cache for thumbnails in the current loop
    5151 *
    52  * @since 3.2
     52 * @since 3.2.0
    5353 *
    5454 * @param object $wp_query Optional. A WP_Query instance. Defaults to the $wp_query global.
  • trunk/src/wp-includes/script-loader.php

    r26799 r26868  
    715715 * print_footer_scripts() is called in the footer to print these scripts.
    716716 *
    717  * @since 2.8
     717 * @since 2.8.0
    718718 *
    719719 * @see wp_print_scripts()
     
    744744 * Prints the scripts that were queued for the footer or too late for the HTML head.
    745745 *
    746  * @since 2.8
     746 * @since 2.8.0
    747747 */
    748748function print_footer_scripts() {
     
    800800 * wp_print_footer_scripts() is called in the footer to print these scripts.
    801801 *
    802  * @since 2.8
     802 * @since 2.8.0
    803803 */
    804804function wp_print_head_scripts() {
     
    829829 * Hooks to print the scripts and styles in the footer.
    830830 *
    831  * @since 2.8
     831 * @since 2.8.0
    832832 */
    833833function wp_print_footer_scripts() {
     
    841841 * Runs first in wp_head() where all is_home(), is_page(), etc. functions are available.
    842842 *
    843  * @since 2.8
     843 * @since 2.8.0
    844844 */
    845845function wp_enqueue_scripts() {
     
    850850 * Prints the styles queue in the HTML head on admin pages.
    851851 *
    852  * @since 2.8
     852 * @since 2.8.0
    853853 */
    854854function print_admin_styles() {
     
    924924 * Determine the concatenation and compression settings for scripts and styles.
    925925 *
    926  * @since 2.8
     926 * @since 2.8.0
    927927 */
    928928function script_concat_settings() {
  • trunk/src/wp-includes/shortcodes.php

    r25880 r26868  
    3030 * @package WordPress
    3131 * @subpackage Shortcodes
    32  * @since 2.5
     32 * @since 2.5.0
    3333 */
    3434
     
    3636 * Container for storing shortcode tags and their hook to call for the shortcode
    3737 *
    38  * @since 2.5
     38 * @since 2.5.0
     39 *
    3940 * @name $shortcode_tags
    4041 * @var array
     
    8586 * </code>
    8687 *
    87  * @since 2.5
     88 * @since 2.5.0
     89 *
    8890 * @uses $shortcode_tags
    8991 *
     
    101103 * Removes hook for shortcode.
    102104 *
    103  * @since 2.5
     105 * @since 2.5.0
     106 *
    104107 * @uses $shortcode_tags
    105108 *
     
    119122 * for removing all shortcodes.
    120123 *
    121  * @since 2.5
     124 * @since 2.5.0
     125 *
    122126 * @uses $shortcode_tags
    123127 */
     
    172176 * the shortcode will still show up in the post or content.
    173177 *
    174  * @since 2.5
     178 * @since 2.5.0
     179 *
    175180 * @uses $shortcode_tags
    176181 * @uses get_shortcode_regex() Gets the search pattern for searching shortcodes.
     
    204209 * 6 - An extra ] to allow for escaping shortcodes with double [[]]
    205210 *
    206  * @since 2.5
     211 * @since 2.5.0
     212 *
    207213 * @uses $shortcode_tags
    208214 *
     
    251257 * @see get_shortcode_regex for details of the match array contents.
    252258 *
    253  * @since 2.5
     259 * @since 2.5.0
    254260 * @access private
    255261 * @uses $shortcode_tags
     
    285291 * retrieval of the attributes, since all attributes have to be known.
    286292 *
    287  * @since 2.5
     293 * @since 2.5.0
    288294 *
    289295 * @param string $text
     
    323329 * removed from the final returned list.
    324330 *
    325  * @since 2.5
     331 * @since 2.5.0
    326332 *
    327333 * @param array $pairs Entire list of supported attributes and their defaults.
     
    360366 * Remove all shortcode tags from the given content.
    361367 *
    362  * @since 2.5
     368 * @since 2.5.0
     369 *
    363370 * @uses $shortcode_tags
    364371 *
  • trunk/src/wp-includes/taxonomy.php

    r26544 r26868  
    23382338 * @package WordPress
    23392339 * @subpackage Taxonomy
    2340  * @since 3.6
     2340 * @since 3.6.0
    23412341 * @uses wp_set_object_terms()
    23422342 *
     
    23552355 * @package WordPress
    23562356 * @subpackage Taxonomy
    2357  * @since 3.6
     2357 * @since 3.6.0
    23582358 * @uses $wpdb
    23592359 *
  • trunk/src/wp-includes/theme.php

    r26594 r26868  
    15601560 * Gets the theme support arguments passed when registering that support
    15611561 *
    1562  * @since 3.1
     1562 * @since 3.1.0
     1563 *
    15631564 * @param string $feature the feature to check
    15641565 * @return array The array of extra arguments
  • trunk/src/wp-includes/widgets.php

    r25580 r26868  
    2020 * @package WordPress
    2121 * @subpackage Widgets
    22  * @since 2.8
     22 * @since 2.8.0
    2323 */
    2424class WP_Widget {
     
    312312 * @package WordPress
    313313 * @subpackage Widgets
    314  * @since 2.8
     314 * @since 2.8.0
    315315 */
    316316class WP_Widget_Factory {
     
    979979 * Whether a sidebar is in use.
    980980 *
    981  * @since 2.8
     981 * @since 2.8.0
    982982 *
    983983 * @param mixed $index Sidebar name, id or number to check.
     
    11251125 * Output an arbitrary widget as a template tag
    11261126 *
    1127  * @since 2.8
     1127 * @since 2.8.0
    11281128 *
    11291129 * @param string $widget the widget's PHP class name (see default-widgets.php)
Note: See TracChangeset for help on using the changeset viewer.