Make WordPress Core


Ignore:
Timestamp:
05/31/2015 03:17:50 AM (10 years ago)
Author:
wonderboymusic
Message:

Add doc blocks to functions that are missing them.
If the function has no need for @param or @return, do an archeaological dig to find @since.

See #32444.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/misc.php

    r32653 r32672  
    311311}
    312312
     313/**
     314 * @since 2.8.0
     315 *
     316 * @param string $content
     317 * @return array
     318 */
    313319function wp_doc_link_parse( $content ) {
    314320    if ( !is_string( $content ) || empty( $content ) )
     
    677683}
    678684
     685/**
     686 * @since 3.3.0
     687 */
    679688function _ipad_meta() {
    680689    if ( wp_is_mobile() ) {
Note: See TracChangeset for help on using the changeset viewer.