Make WordPress Core

Changeset 13827


Ignore:
Timestamp:
03/26/2010 07:13:36 PM (15 years ago)
Author:
nacin
Message:

Change @since 3.0 to @since 3.0.0.

Location:
trunk
Files:
22 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/wp-admin/custom-background.php

    r13788 r13827  
    1010 * The custom background class.
    1111 *
    12  * @since 3.0
     12 * @since 3.0.0
    1313 * @package WordPress
    1414 * @subpackage Administration
     
    2929     *
    3030     * @var callback
    31      * @since 3.0
     31     * @since 3.0.0
    3232     * @access private
    3333     */
     
    3737     * PHP4 Constructor - Register administration header callback.
    3838     *
    39      * @since 3.0
     39     * @since 3.0.0
    4040     * @param callback $admin_header_callback
    4141     * @param callback $admin_image_div_callback Optional custom image div output callback.
     
    5050     * Set up the hooks for the Custom Background admin page.
    5151     *
    52      * @since 3.0
     52     * @since 3.0.0
    5353     */
    5454    function init() {
     
    6969     * Set up the enqueue for the CSS & JavaScript files.
    7070     *
    71      * @since 3.0
     71     * @since 3.0.0
    7272     */
    7373    function admin_load() {
     
    7979     * Execute custom background modification.
    8080     *
    81      * @since 3.0
     81     * @since 3.0.0
    8282     */
    8383    function take_action() {
     
    133133     * Display the custom background page.
    134134     *
    135      * @since 3.0
     135     * @since 3.0.0
    136136     */
    137137    function admin_page() {
     
    253253     * Handle a Image upload for the background image.
    254254     *
    255      * @since 3.0
     255     * @since 3.0.0
    256256     */
    257257    function handle_upload() {
  • TabularUnified trunk/wp-admin/custom-header.php

    r13790 r13827  
    1010 * The custom header image class.
    1111 *
    12  * @since 3.0
     12 * @since 3.0.0
    1313 * @package WordPress
    1414 * @subpackage Administration
     
    2020     *
    2121     * @var callback
    22      * @since 3.0
     22     * @since 3.0.0
    2323     * @access private
    2424     */
     
    2929     *
    3030     * @var callback
    31      * @since 3.0
     31     * @since 3.0.0
    3232     * @access private
    3333     */
     
    3939     * PHP4 Constructor - Register administration header callback.
    4040     *
    41      * @since 3.0
     41     * @since 3.0.0
    4242     * @param callback $admin_header_callback
    4343     * @param callback $admin_image_div_callback Optional custom image div output callback.
     
    5252     * Set up the hooks for the Custom Header admin page.
    5353     *
    54      * @since 3.0
     54     * @since 3.0.0
    5555     */
    5656    function init() {
     
    7070     * Get the current step.
    7171     *
    72      * @since 3.0
     72     * @since 3.0.0
    7373     *
    7474     * @return int Current step
     
    8888     * Set up the enqueue for the JavaScript files.
    8989     *
    90      * @since 3.0
     90     * @since 3.0.0
    9191     */
    9292    function js_includes() {
     
    116116     * Execute custom header modification.
    117117     *
    118      * @since 3.0
     118     * @since 3.0.0
    119119     */
    120120    function take_action() {
     
    211211     * Execute Javascript depending on step.
    212212     *
    213      * @since 3.0
     213     * @since 3.0.0
    214214     */
    215215    function js() {
     
    224224     * Display Javascript based on Step 1.
    225225     *
    226      * @since 3.0
     226     * @since 3.0.0
    227227     */
    228228    function js_1() { ?>
     
    302302     * Display Javascript based on Step 2.
    303303     *
    304      * @since 3.0
     304     * @since 3.0.0
    305305     */
    306306    function js_2() { ?>
     
    354354     * Display first step of custom header image page.
    355355     *
    356      * @since 3.0
     356     * @since 3.0.0
    357357     */
    358358    function step_1() {
     
    449449     * Display second step of custom header image page.
    450450     *
    451      * @since 3.0
     451     * @since 3.0.0
    452452     */
    453453    function step_2() {
     
    529529     * Display third step of custom header image page.
    530530     *
    531      * @since 3.0
     531     * @since 3.0.0
    532532     */
    533533    function step_3() {
     
    578578     * Display last step of custom header image page.
    579579     *
    580      * @since 3.0
     580     * @since 3.0.0
    581581     */
    582582    function finished() {
     
    588588     * Display the page based on the current step.
    589589     *
    590      * @since 3.0
     590     * @since 3.0.0
    591591     */
    592592    function admin_page() {
  • TabularUnified trunk/wp-admin/includes/class-wp-upgrader.php

    r13733 r13827  
    10361036 * @package WordPress
    10371037 * @subpackage Upgrader
    1038  * @since 3.0
     1038 * @since 3.0.0
    10391039 */
    10401040class Bulk_Upgrader_Skin extends WP_Upgrader_Skin {
  • TabularUnified trunk/wp-admin/includes/file.php

    r13825 r13827  
    551551 * Assumes that WP_Filesystem() has already been called and set up.
    552552 *
    553  * @since 3.0
     553 * @since 3.0.0
    554554 * @see unzip_file
    555555 * @access private
     
    613613 * Assumes that WP_Filesystem() has already been called and set up.
    614614 *
    615  * @since 3.0
     615 * @since 3.0.0
    616616 * @see unzip_file
    617617 * @access private
  • TabularUnified trunk/wp-admin/includes/meta-boxes.php

    r13786 r13827  
    409409 * Display comments for post table header
    410410 *
    411  * @since 3.0
     411 * @since 3.0.0
    412412 *
    413413 * @param $result table header rows
  • TabularUnified trunk/wp-admin/includes/ms.php

    r13805 r13827  
    44 * Determine if uploaded file exceeds space quota.
    55 *
    6  * @since 3.0
     6 * @since 3.0.0
    77 *
    88 * @param array $file $_FILES array for a given file.
     
    4040 * Delete a blog
    4141 *
    42  * @since 3.0
     42 * @since 3.0.0
    4343 *
    4444 * @param int $blog_id Blog ID
     
    515515function format_code_lang( $code = '' ) {
    516516    $code = strtolower(substr($code, 0, 2));
    517     $lang_codes = array('aa' => 'Afar',  'ab' => 'Abkhazian',  'af' => 'Afrikaans',  'ak' => 'Akan',  'sq' => 'Albanian',  'am' => 'Amharic',  'ar' => 'Arabic',  'an' => 'Aragonese',  'hy' => 'Armenian',  'as' => 'Assamese',  'av' => 'Avaric',  'ae' => 'Avestan',  'ay' => 'Aymara',  'az' => 'Azerbaijani',  'ba' => 'Bashkir',  'bm' => 'Bambara',  'eu' => 'Basque',  'be' => 'Belarusian',  'bn' => 'Bengali',  'bh' => 'Bihari',  'bi' => 'Bislama',  'bs' => 'Bosnian',  'br' => 'Breton',  'bg' => 'Bulgarian',  'my' => 'Burmese',  'ca' => 'Catalan; Valencian',  'ch' => 'Chamorro',  'ce' => 'Chechen',  'zh' => 'Chinese',  'cu' => 'Church Slavic; Old Slavonic; Church Slavonic; Old Bulgarian; Old Church Slavonic',  'cv' => 'Chuvash',  'kw' => 'Cornish',  'co' => 'Corsican',  'cr' => 'Cree',  'cs' => 'Czech',  'da' => 'Danish',  'dv' => 'Divehi; Dhivehi; Maldivian',  'nl' => 'Dutch; Flemish',  'dz' => 'Dzongkha',  'en' => 'English',  'eo' => 'Esperanto',  'et' => 'Estonian',  'ee' => 'Ewe',  'fo' => 'Faroese',  'fj' => 'Fijian',  'fi' => 'Finnish',  'fr' => 'French',  'fy' => 'Western Frisian',  'ff' => 'Fulah',  'ka' => 'Georgian',  'de' => 'German',  'gd' => 'Gaelic; Scottish Gaelic',  'ga' => 'Irish',  'gl' => 'Galician',  'gv' => 'Manx',  'el' => 'Greek, Modern',  'gn' => 'Guarani',  'gu' => 'Gujarati',  'ht' => 'Haitian; Haitian Creole',  'ha' => 'Hausa',  'he' => 'Hebrew',  'hz' => 'Herero',  'hi' => 'Hindi',  'ho' => 'Hiri Motu',  'hu' => 'Hungarian',  'ig' => 'Igbo',  'is' => 'Icelandic',  'io' => 'Ido',  'ii' => 'Sichuan Yi',  'iu' => 'Inuktitut',  'ie' => 'Interlingue',  'ia' => 'Interlingua (International Auxiliary Language Association)',  'id' => 'Indonesian',  'ik' => 'Inupiaq',  'it' => 'Italian',  'jv' => 'Javanese',  'ja' => 'Japanese',  'kl' => 'Kalaallisut; Greenlandic',  'kn' => 'Kannada',  'ks' => 'Kashmiri',  'kr' => 'Kanuri',  'kk' => 'Kazakh',  'km' => 'Central Khmer',  'ki' => 'Kikuyu; Gikuyu',  'rw' => 'Kinyarwanda',  'ky' => 'Kirghiz; Kyrgyz',  'kv' => 'Komi',  'kg' => 'Kongo',  'ko' => 'Korean',  'kj' => 'Kuanyama; Kwanyama',  'ku' => 'Kurdish',  'lo' => 'Lao',  'la' => 'Latin',  'lv' => 'Latvian',  'li' => 'Limburgan; Limburger; Limburgish',  'ln' => 'Lingala',  'lt' => 'Lithuanian',  'lb' => 'Luxembourgish; Letzeburgesch',  'lu' => 'Luba-Katanga',  'lg' => 'Ganda',  'mk' => 'Macedonian',  'mh' => 'Marshallese',  'ml' => 'Malayalam',  'mi' => 'Maori',  'mr' => 'Marathi',  'ms' => 'Malay',  'mg' => 'Malagasy',  'mt' => 'Maltese',  'mo' => 'Moldavian',  'mn' => 'Mongolian',  'na' => 'Nauru',  'nv' => 'Navajo; Navaho',  'nr' => 'Ndebele, South; South Ndebele',  'nd' => 'Ndebele, North; North Ndebele',  'ng' => 'Ndonga',  'ne' => 'Nepali',  'nn' => 'Norwegian Nynorsk; Nynorsk, Norwegian',  'nb' => 'Bokmål, Norwegian, Norwegian Bokmål',  'no' => 'Norwegian',  'ny' => 'Chichewa; Chewa; Nyanja',  'oc' => 'Occitan, Provençal',  'oj' => 'Ojibwa',  'or' => 'Oriya',  'om' => 'Oromo',  'os' => 'Ossetian; Ossetic',  'pa' => 'Panjabi; Punjabi',  'fa' => 'Persian',  'pi' => 'Pali',  'pl' => 'Polish',  'pt' => 'Portuguese',  'ps' => 'Pushto',  'qu' => 'Quechua',  'rm' => 'Romansh',  'ro' => 'Romanian',  'rn' => 'Rundi',  'ru' => 'Russian',  'sg' => 'Sango',  'sa' => 'Sanskrit',  'sr' => 'Serbian',  'hr' => 'Croatian',  'si' => 'Sinhala; Sinhalese',  'sk' => 'Slovak',  'sl' => 'Slovenian',  'se' => 'Northern Sami',  'sm' => 'Samoan',  'sn' => 'Shona',  'sd' => 'Sindhi',  'so' => 'Somali',  'st' => 'Sotho, Southern',  'es' => 'Spanish; Castilian',  'sc' => 'Sardinian',  'ss' => 'Swati',  'su' => 'Sundanese',  'sw' => 'Swahili',  'sv' => 'Swedish',  'ty' => 'Tahitian',  'ta' => 'Tamil',  'tt' => 'Tatar',  'te' => 'Telugu',  'tg' => 'Tajik',  'tl' => 'Tagalog',  'th' => 'Thai',  'bo' => 'Tibetan',  'ti' => 'Tigrinya',  'to' => 'Tonga (Tonga Islands)',  'tn' => 'Tswana',  'ts' => 'Tsonga',  'tk' => 'Turkmen',  'tr' => 'Turkish',  'tw' => 'Twi',  'ug' => 'Uighur; Uyghur',  'uk' => 'Ukrainian',  'ur' => 'Urdu',  'uz' => 'Uzbek',  've' => 'Venda',  'vi' => 'Vietnamese',  'vo' => 'Volapük',  'cy' => 'Welsh',  'wa' => 'Walloon',  'wo' => 'Wolof',  'xh' => 'Xhosa',  'yi' => 'Yiddish',  'yo' => 'Yoruba',  'za' => 'Zhuang; Chuang',  'zu' => 'Zulu');
     517    $lang_codes = array('aa' => 'Afar',  'ab' => 'Abkhazian',  'af' => 'Afrikaans',  'ak' => 'Akan',  'sq' => 'Albanian',  'am' => 'Amharic',  'ar' => 'Arabic',  'an' => 'Aragonese',  'hy' => 'Armenian',  'as' => 'Assamese',  'av' => 'Avaric',  'ae' => 'Avestan',  'ay' => 'Aymara',  'az' => 'Azerbaijani',  'ba' => 'Bashkir',  'bm' => 'Bambara',  'eu' => 'Basque',  'be' => 'Belarusian',  'bn' => 'Bengali',  'bh' => 'Bihari',  'bi' => 'Bislama',  'bs' => 'Bosnian',  'br' => 'Breton',  'bg' => 'Bulgarian',  'my' => 'Burmese',  'ca' => 'Catalan; Valencian',  'ch' => 'Chamorro',  'ce' => 'Chechen',  'zh' => 'Chinese',  'cu' => 'Church Slavic; Old Slavonic; Church Slavonic; Old Bulgarian; Old Church Slavonic',  'cv' => 'Chuvash',  'kw' => 'Cornish',  'co' => 'Corsican',  'cr' => 'Cree',  'cs' => 'Czech',  'da' => 'Danish',  'dv' => 'Divehi; Dhivehi; Maldivian',  'nl' => 'Dutch; Flemish',  'dz' => 'Dzongkha',  'en' => 'English',  'eo' => 'Esperanto',  'et' => 'Estonian',  'ee' => 'Ewe',  'fo' => 'Faroese',  'fj' => 'Fijian',  'fi' => 'Finnish',  'fr' => 'French',  'fy' => 'Western Frisian',  'ff' => 'Fulah',  'ka' => 'Georgian',  'de' => 'German',  'gd' => 'Gaelic; Scottish Gaelic',  'ga' => 'Irish',  'gl' => 'Galician',  'gv' => 'Manx',  'el' => 'Greek, Modern',  'gn' => 'Guarani',  'gu' => 'Gujarati',  'ht' => 'Haitian; Haitian Creole',  'ha' => 'Hausa',  'he' => 'Hebrew',  'hz' => 'Herero',  'hi' => 'Hindi',  'ho' => 'Hiri Motu',  'hu' => 'Hungarian',  'ig' => 'Igbo',  'is' => 'Icelandic',  'io' => 'Ido',  'ii' => 'Sichuan Yi',  'iu' => 'Inuktitut',  'ie' => 'Interlingue',  'ia' => 'Interlingua (International Auxiliary Language Association)',  'id' => 'Indonesian',  'ik' => 'Inupiaq',  'it' => 'Italian',  'jv' => 'Javanese',  'ja' => 'Japanese',  'kl' => 'Kalaallisut; Greenlandic',  'kn' => 'Kannada',  'ks' => 'Kashmiri',  'kr' => 'Kanuri',  'kk' => 'Kazakh',  'km' => 'Central Khmer',  'ki' => 'Kikuyu; Gikuyu',  'rw' => 'Kinyarwanda',  'ky' => 'Kirghiz; Kyrgyz',  'kv' => 'Komi',  'kg' => 'Kongo',  'ko' => 'Korean',  'kj' => 'Kuanyama; Kwanyama',  'ku' => 'Kurdish',  'lo' => 'Lao',  'la' => 'Latin',  'lv' => 'Latvian',  'li' => 'Limburgan; Limburger; Limburgish',  'ln' => 'Lingala',  'lt' => 'Lithuanian',  'lb' => 'Luxembourgish; Letzeburgesch',  'lu' => 'Luba-Katanga',  'lg' => 'Ganda',  'mk' => 'Macedonian',  'mh' => 'Marshallese',  'ml' => 'Malayalam',  'mi' => 'Maori',  'mr' => 'Marathi',  'ms' => 'Malay',  'mg' => 'Malagasy',  'mt' => 'Maltese',  'mo' => 'Moldavian',  'mn' => 'Mongolian',  'na' => 'Nauru',  'nv' => 'Navajo; Navaho',  'nr' => 'Ndebele, South; South Ndebele',  'nd' => 'Ndebele, North; North Ndebele',  'ng' => 'Ndonga',  'ne' => 'Nepali',  'nn' => 'Norwegian Nynorsk; Nynorsk, Norwegian',  'nb' => 'Bokmål, Norwegian, Norwegian Bokmål',  'no' => 'Norwegian',  'ny' => 'Chichewa; Chewa; Nyanja',  'oc' => 'Occitan, Provençal',  'oj' => 'Ojibwa',  'or' => 'Oriya',  'om' => 'Oromo',  'os' => 'Ossetian; Ossetic',  'pa' => 'Panjabi; Punjabi',  'fa' => 'Persian',  'pi' => 'Pali',  'pl' => 'Polish',  'pt' => 'Portuguese',  'ps' => 'Pushto',  'qu' => 'Quechua',  'rm' => 'Romansh',  'ro' => 'Romanian',  'rn' => 'Rundi',  'ru' => 'Russian',  'sg' => 'Sango',  'sa' => 'Sanskrit',  'sr' => 'Serbian',  'hr' => 'Croatian',  'si' => 'Sinhala; Sinhalese',  'sk' => 'Slovak',  'sl' => 'Slovenian',  'se' => 'Northern Sami',  'sm' => 'Samoan',  'sn' => 'Shona',  'sd' => 'Sindhi',  'so' => 'Somali',  'st' => 'Sotho, Southern',  'es' => 'Spanish; Castilian',  'sc' => 'Sardinian',  'ss' => 'Swati',  'su' => 'Sundanese',  'sw' => 'Swahili',  'sv' => 'Swedish',  'ty' => 'Tahitian',  'ta' => 'Tamil',  'tt' => 'Tatar',  'te' => 'Telugu',  'tg' => 'Tajik',  'tl' => 'Tagalog',  'th' => 'Thai',  'bo' => 'Tibetan',  'ti' => 'Tigrinya',  'to' => 'Tonga (Tonga Islands)',  'tn' => 'Tswana',  'ts' => 'Tsonga',  'tk' => 'Turkmen',  'tr' => 'Turkish',  'tw' => 'Twi',  'ug' => 'Uighur; Uyghur',  'uk' => 'Ukrainian',  'ur' => 'Urdu',  'uz' => 'Uzbek',  've' => 'Venda',  'vi' => 'Vietnamese',  'vo' => 'Volapük',  'cy' => 'Welsh',  'wa' => 'Walloon'
     518,  'wo' => 'Wolof',  'xh' => 'Xhosa',  'yi' => 'Yiddish',  'yo' => 'Yoruba',  'za' => 'Zhuang; Chuang',  'zu' => 'Zulu');
    518519    $lang_codes = apply_filters('lang_codes', $lang_codes, $code);
    519520    return strtr( $code, $lang_codes );
     
    757758 * Outputs the notice message for multisite regarding activation of plugin page.
    758759 *
    759  * @since 3.0
     760 * @since 3.0.0
    760761 * @return none
    761762 */
  • TabularUnified trunk/wp-admin/includes/schema.php

    r13760 r13827  
    601601 * Create and modify WordPress roles for WordPress 3.0.
    602602 *
    603  * @since 3.0
     603 * @since 3.0.0
    604604 */
    605605function populate_roles_300() {
     
    616616 * populate network settings
    617617 *
    618  * @since 3.0
     618 * @since 3.0.0
    619619 *
    620620 * @param int $network_id id of network to populate
  • TabularUnified trunk/wp-admin/includes/template.php

    r13786 r13827  
    38803880 * Set the current screen object
    38813881 *
    3882  * @since 3.0
     3882 * @since 3.0.0
    38833883 *
    38843884 * @uses $current_screen
  • TabularUnified trunk/wp-admin/includes/theme.php

    r13762 r13827  
    121121 * Get the allowed themes for the current blog.
    122122 *
    123  * @since 3.0
     123 * @since 3.0.0
    124124 *
    125125 * @uses get_themes()
  • TabularUnified trunk/wp-admin/includes/upgrade.php

    r13817 r13827  
    18591859 * Install Network.
    18601860 *
    1861  * @since 3.0
     1861 * @since 3.0.0
    18621862 *
    18631863 */
     
    19551955 * Install global terms.
    19561956 *
    1957  * @since 3.0
     1957 * @since 3.0.0
    19581958 *
    19591959 */
  • TabularUnified trunk/wp-admin/includes/user.php

    r13488 r13827  
    574574     * {@internal Missing Description}}
    575575     *
    576      * @since 3.0
     576     * @since 3.0.0
    577577     * @access private
    578578     * @var string
     
    583583     * {@internal Missing Description}}
    584584     *
    585      * @since 3.0
     585     * @since 3.0.0
    586586     * @access private
    587587     * @var string
     
    592592     * {@internal Missing Description}}
    593593     *
    594      * @since 3.0
     594     * @since 3.0.0
    595595     * @access private
    596596     * @var string
  • TabularUnified trunk/wp-includes/capabilities.php

    r13786 r13827  
    764764     * Set the blog to operate on. Defaults to the current blog.
    765765     *
    766      * @since 3.0
     766     * @since 3.0.0
    767767     *
    768768     * @param int $blog_id Optional Blog ID, defaults to current blog.
     
    11541154 * Determine if user is a site admin.
    11551155 *
    1156  * @since 3.0
     1156 * @since 3.0.0
    11571157 *
    11581158 * @param int $user_id (Optional) The ID of a user. Defaults to the current user.
  • TabularUnified trunk/wp-includes/comment-template.php

    r13769 r13827  
    14521452 * in the array of fields.
    14531453 *
    1454  * @since 3.0
     1454 * @since 3.0.0
    14551455 * @param array $args Options for strings, fields etc in the form
    14561456 * @param mixed $post_id Post ID to generate the form for, uses the current post if null
  • TabularUnified trunk/wp-includes/l10n.php

    r13733 r13827  
    388388 * Load the translated strings for a plugin residing in the mu-plugins dir.
    389389 *
    390  * @since 3.0
     390 * @since 3.0.0
    391391 *
    392392 * @param string $domain Unique identifier for retrieving translated strings
  • TabularUnified trunk/wp-includes/link-template.php

    r13814 r13827  
    20412041 * Prints the ajax url on the front end
    20422042 *
    2043  * @since 3.0
     2043 * @since 3.0.0
    20442044 **/
    20452045function _wp_ajaxurl() {
     
    20522052 * Hooks _wp_ajaxurl() to wp_head
    20532053 *
    2054  * @since 3.0
     2054 * @since 3.0.0
    20552055 **/
    20562056function wp_ajaxurl() {
  • TabularUnified trunk/wp-includes/media.php

    r13769 r13827  
    515515/**
    516516 * Get the available image sizes
    517  * @since 3.0
     517 * @since 3.0.0
    518518 * @return array Returns a filtered array of image size strings
    519519 */
  • TabularUnified trunk/wp-includes/ms-blogs.php

    r13460 r13827  
    7474 * Retrieve the details for a blog from the blogs table and blog options.
    7575 *
    76  * @since 3.0
     76 * @since 3.0.0
    7777 * @param int|string|array $fields A blog ID, a blog name, or an array of fields to query against.
    7878 * @param bool $get_all Whether to retrieve all details or only the details in the blogs table. Default is true.
     
    184184 * Clear the blog details cache.
    185185 *
    186  * @since 3.0
     186 * @since 3.0.0
    187187 *
    188188 * @param int $blog_id Blog ID
     
    202202 * Update the details for a blog. Updates the blogs table for a given blog id.
    203203 *
    204  * @since 3.0
     204 * @since 3.0.0
    205205 *
    206206 * @param int $blog_id Blog ID
     
    478478 * Update a blog details field.
    479479 *
    480  * @since 3.0
     480 * @since 3.0.0
    481481 *
    482482 * @param int $blog_id BLog ID
  • TabularUnified trunk/wp-includes/ms-load.php

    r13797 r13827  
    1212 * Whether a subdomain configuration is enabled.
    1313 *
    14  * @since 3.0
     14 * @since 3.0.0
    1515 *
    1616 * @return bool True if subdomain configuration is enabled, false otherwise.
  • TabularUnified trunk/wp-includes/plugin.php

    r13756 r13827  
    182182 * @package WordPress
    183183 * @subpackage Plugin
    184  * @since 3.0
     184 * @since 3.0.0
    185185 * @global array $wp_filter Stores all of the filters
    186186 * @global array $merged_filters Merges the filter hooks using this function.
  • TabularUnified trunk/wp-includes/post.php

    r13802 r13827  
    530530 * @package WordPress
    531531 * @subpackage Post
    532  * @since 3.0
     532 * @since 3.0.0
    533533 * @uses $wp_post_statuses Inserts new post status object into the list
    534534 *
     
    596596 * @package WordPress
    597597 * @subpackage Post
    598  * @since 3.0
     598 * @since 3.0.0
    599599 * @uses $wp_post_statuses
    600600 * @see register_post_status
     
    618618 * @package WordPress
    619619 * @subpackage Post
    620  * @since 3.0
     620 * @since 3.0.0
    621621 * @uses $wp_post_statuses
    622622 * @see register_post_status
     
    691691 * @package WordPress
    692692 * @subpackage Post
    693  * @since 3.0
     693 * @since 3.0.0
    694694 * @uses $wp_post_types
    695695 * @see register_post_type
     
    879879 * Register support of certain features for a post type.
    880880 *
    881  * @since 3.0
     881 * @since 3.0.0
    882882 * @param string $post_type The post type for which to add the feature
    883883 * @param string|array $feature the feature being added, can be an array of feature strings or a single string
     
    898898 * Remove support for a feature from a post type.
    899899 *
    900  * @since 3.0
     900 * @since 3.0.0
    901901 * @param string $post_type The post type for which to remove the feature
    902902 * @param string $feature The feature being removed
     
    915915 * Checks a post type's support for a given feature
    916916 *
    917  * @since 3.0
     917 * @since 3.0.0
    918918 * @param string $post_type The post type being checked
    919919 * @param string $feature the feature being checked
     
    40074007 * @package WordPress
    40084008 * @subpackage Cache
    4009  * @since 3.0
     4009 * @since 3.0.0
    40104010 *
    40114011 * @uses do_action() Calls 'clean_attachment_cache' on $id.
  • TabularUnified trunk/wp-includes/taxonomy.php

    r13821 r13827  
    305305 * @package WordPress
    306306 * @subpackage Taxonomy
    307  * @since 3.0
     307 * @since 3.0.0
    308308 * @uses $wp_taxonomies Modifies taxonomy object
    309309 *
     
    25672567 * Determine if the given object type is associated with the given taxonomy.
    25682568 *
    2569  * @since 3.0
     2569 * @since 3.0.0
    25702570 * @uses get_object_taxonomies()
    25712571 *
  • TabularUnified trunk/wp-includes/user.php

    r13769 r13827  
    385385 * If the meta field for the user does not exist, it will be added.
    386386 *
    387  * @since 3.0
     387 * @since 3.0.0
    388388 * @uses update_metadata
    389389 * @link http://codex.wordpress.org/Function_Reference/update_user_meta
Note: See TracChangeset for help on using the changeset viewer.