Changeset 26081
- Timestamp:
- 11/11/2013 01:31:19 PM (11 years ago)
- Location:
- trunk/src
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-link-form.php
r26080 r26081 35 35 36 36 /** 37 * Fires when link-specific meta boxes are added.38 *39 * @since 3.0.040 *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 */ 43 43 do_action( 'add_meta_boxes_link', $link ); 44 44 -
trunk/src/wp-admin/includes/class-wp-theme-install-list-table.php
r25070 r26081 161 161 } 162 162 163 /* 163 /** 164 164 * Prints a theme from the WordPress.org API. 165 165 * … … 248 248 } 249 249 250 /* 250 /** 251 251 * Prints the wrapper for the theme installer. 252 252 */ … … 273 273 } 274 274 275 /* 275 /** 276 276 * Prints the wrapper for the theme installer with a provided theme's data. 277 277 * Used to make the theme installer work for no-js. … … 292 292 } 293 293 294 /* 294 /** 295 295 * Prints the info for a theme (to be used in the theme installer modal). 296 296 * -
trunk/src/wp-admin/js/customize-controls.js
r25681 r26081 2 2 var api = wp.customize; 3 3 4 /* 4 /** 5 5 * @param options 6 6 * - previewer - The Previewer instance to sync with. -
trunk/src/wp-admin/options-writing.php
r25868 r26081 39 39 40 40 /** 41 * Toggle site update services configuration functionality.42 *43 * @since 3.0.044 *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 */ 47 47 if ( apply_filters( 'enable_update_services_configuration', true ) ) { 48 48 get_current_screen()->add_help_tab( array( -
trunk/src/wp-includes/capabilities.php
r25695 r26081 685 685 } 686 686 687 /* 687 /** 688 688 * Return an array representation. 689 689 * -
trunk/src/wp-includes/comment.php
r25868 r26081 397 397 } 398 398 399 /* 399 /** 400 400 * Used internally to generate an SQL string for searching across multiple columns 401 401 * -
trunk/src/wp-includes/js/plupload/wp-plupload.js
r23162 r26081 7 7 return; 8 8 9 /* 9 /** 10 10 * An object that helps create a WordPress uploader using plupload. 11 11 * -
trunk/src/wp-includes/link-template.php
r25966 r26081 737 737 738 738 /** 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 */ 745 746 function get_search_link( $query = '' ) { 746 747 global $wp_rewrite; -
trunk/src/wp-includes/query.php
r26061 r26081 1713 1713 } 1714 1714 1715 /* 1715 /** 1716 1716 * Parses various taxonomy related query vars. 1717 1717 * -
trunk/src/wp-includes/update.php
r25956 r26081 453 453 } 454 454 455 /* 455 /** 456 456 * Collect counts and UI strings for available updates 457 457 * -
trunk/src/wp-includes/user.php
r25997 r26081 619 619 } 620 620 621 /* 621 /** 622 622 * Used internally to generate an SQL string for searching across multiple columns 623 623 *
Note: See TracChangeset
for help on using the changeset viewer.