Changeset 35013
- Timestamp:
- 10/10/2015 03:44:16 PM (10 years ago)
- Location:
- trunk/src
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/ms.php
r34979 r35013 318 318 * @since 3.0.0 319 319 * 320 * @global object$errors WP_Error object.321 * @global object$wpdb WordPress database object.320 * @global WP_Error $errors WP_Error object. 321 * @global wpdb $wpdb WordPress database object. 322 322 */ 323 323 function send_confirmation_on_profile_email() { -
trunk/src/wp-includes/admin-bar.php
r34903 r35013 531 531 * @since 3.1.0 532 532 * 533 * @global object$tag533 * @global WP_Term $tag 534 534 * @global WP_Query $wp_the_query 535 535 * -
trunk/src/wp-includes/class-walker-comment.php
r34993 r35013 155 155 * @see wp_list_comments() 156 156 * 157 * @global int $comment_depth158 * @global object $comment157 * @global int $comment_depth 158 * @global WP_Comment $comment 159 159 * 160 160 * @param string $output Passed by reference. Used to append additional content. -
trunk/src/wp-includes/comment-functions.php
r34815 r35013 163 163 * @since 2.0.0 164 164 * 165 * @global object $comment165 * @global WP_Comment $comment 166 166 * 167 167 * @param WP_Comment|string|int $comment Comment to retrieve. -
trunk/src/wp-includes/comment-template.php
r34871 r35013 1220 1220 * @since 1.5.0 1221 1221 * 1222 * @global WP_Query $wp_query1223 * @global WP_Post $post1224 * @global wpdb $wpdb1225 * @global int $id1226 * @global object$comment1227 * @global string $user_login1228 * @global int $user_ID1229 * @global string $user_identity1230 * @global bool $overridden_cpage1222 * @global WP_Query $wp_query 1223 * @global WP_Post $post 1224 * @global wpdb $wpdb 1225 * @global int $id 1226 * @global WP_Comment $comment 1227 * @global string $user_login 1228 * @global int $user_ID 1229 * @global string $user_identity 1230 * @global bool $overridden_cpage 1231 1231 * 1232 1232 * @param string $file Optional. The file to load. Default '/comments.php'. -
trunk/src/wp-includes/template.php
r34800 r35013 539 539 * @global WP $wp 540 540 * @global int $id 541 * @global object$comment541 * @global WP_Comment $comment 542 542 * @global int $user_ID 543 543 * -
trunk/src/wp-settings.php
r34961 r35013 263 263 /** 264 264 * WordPress Query object 265 * @global object$wp_the_query265 * @global WP_Query $wp_the_query 266 266 * @since 2.0.0 267 267 */ … … 271 271 * Holds the reference to @see $wp_the_query 272 272 * Use this global for WordPress queries 273 * @global object$wp_query273 * @global WP_Query $wp_query 274 274 * @since 1.5.0 275 275 */ … … 278 278 /** 279 279 * Holds the WordPress Rewrite object for creating pretty URLs 280 * @global object$wp_rewrite280 * @global WP_Rewrite $wp_rewrite 281 281 * @since 1.5.0 282 282 */ … … 285 285 /** 286 286 * WordPress Object 287 * @global object$wp287 * @global WP $wp 288 288 * @since 2.0.0 289 289 */ … … 292 292 /** 293 293 * WordPress Widget Factory Object 294 * @global object$wp_widget_factory294 * @global WP_Widget_Factory $wp_widget_factory 295 295 * @since 2.8.0 296 296 */ … … 299 299 /** 300 300 * WordPress User Roles 301 * @global object$wp_roles301 * @global WP_Roles $wp_roles 302 302 * @since 2.0.0 303 303 */ … … 328 328 /** 329 329 * WordPress Locale object for loading locale domain date and various strings. 330 * @global object$wp_locale330 * @global WP_Locale $wp_locale 331 331 * @since 2.1.0 332 332 */
Note: See TracChangeset
for help on using the changeset viewer.