Changeset 29454
- Timestamp:
- 08/09/2014 07:29:37 PM (11 years ago)
- Location:
- trunk/src
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/custom-background.php
r29206 r29454 73 73 74 74 /** 75 * Make private properties set able for backwards compatibility.75 * Make private properties settable for backwards compatibility. 76 76 * 77 77 * @since 4.0.0 … … 100 100 101 101 /** 102 * Make private properties un setable for backwards compatibility.102 * Make private properties un-settable for backwards compatibility. 103 103 * 104 104 * @since 4.0.0 -
trunk/src/wp-admin/custom-header.php
r29206 r29454 95 95 96 96 /** 97 * Make private properties set able for backwards compatibility.97 * Make private properties settable for backwards compatibility. 98 98 * 99 99 * @since 4.0.0 … … 122 122 123 123 /** 124 * Make private properties un setable for backwards compatibility.124 * Make private properties un-settable for backwards compatibility. 125 125 * 126 126 * @since 4.0.0 -
trunk/src/wp-admin/includes/ajax-actions.php
r29356 r29454 1954 1954 1955 1955 /** 1956 * A jaxhandler for setting the featured image for an attachment.1956 * AJAX handler for setting the featured image for an attachment. 1957 1957 * 1958 1958 * @since 4.0.0 … … 2614 2614 2615 2615 /** 2616 * Apply [embed] handlers to a string.2616 * Apply [embed] AJAX handlers to a string. 2617 2617 * 2618 2618 * @since 4.0.0 -
trunk/src/wp-admin/includes/class-wp-filesystem-base.php
r29206 r29454 46 46 * @access public 47 47 * 48 * @param string $name 49 * @return mixed 48 * @param string $name Property to get. 49 * @return mixed Property. 50 50 */ 51 51 public function __get( $name ) { … … 54 54 55 55 /** 56 * Make private properties set able for backwards compatibility.56 * Make private properties settable for backwards compatibility. 57 57 * 58 58 * @since 4.0.0 … … 81 81 82 82 /** 83 * Make private properties un setable for backwards compatibility.83 * Make private properties un-settable for backwards compatibility. 84 84 * 85 85 * @since 4.0.0 -
trunk/src/wp-admin/includes/class-wp-list-table.php
r29440 r29454 110 110 111 111 /** 112 * Make private properties set able for backwards compatibility.112 * Make private properties settable for backwards compatibility. 113 113 * 114 114 * @since 4.0.0 115 115 * @access public 116 116 * 117 * @param string $name Propert to set.117 * @param string $name Property to set. 118 118 * @param mixed $value Property value. 119 119 * @return mixed Newly-set property. … … 137 137 138 138 /** 139 * Make private properties un setable for backwards compatibility.139 * Make private properties un-settable for backwards compatibility. 140 140 * 141 141 * @since 4.0.0 -
trunk/src/wp-admin/includes/meta-boxes.php
r29099 r29454 43 43 } else { 44 44 $preview_link = set_url_scheme( get_permalink( $post->ID ) ); 45 45 46 /** 46 47 * Filter the URI of a post preview in the post submit box. -
trunk/src/wp-includes/cache.php
r29165 r29454 321 321 322 322 /** 323 * Make private properties set able for backwards compatibility.323 * Make private properties settable for backwards compatibility. 324 324 * 325 325 * @since 4.0.0 … … 348 348 349 349 /** 350 * Make private properties un setable for backwards compatibility.350 * Make private properties un-settable for backwards compatibility. 351 351 * 352 352 * @since 4.0.0 -
trunk/src/wp-includes/class-wp-ajax-response.php
r29145 r29454 44 44 45 45 /** 46 * Make private properties set able for backwards compatibility.46 * Make private properties settable for backwards compatibility. 47 47 * 48 48 * @since 4.0.0 … … 71 71 72 72 /** 73 * Make private properties un setable for backwards compatibility.73 * Make private properties un-settable for backwards compatibility. 74 74 * 75 75 * @since 4.0.0 -
trunk/src/wp-includes/class-wp-customize-manager.php
r29451 r29454 432 432 /** 433 433 * Prevent sending a 404 status when returning the response for the customize 434 * preview, since it causes the jQuery A jaxto fail. Send 200 instead.434 * preview, since it causes the jQuery AJAX to fail. Send 200 instead. 435 435 * 436 436 * @since 4.0.0 -
trunk/src/wp-includes/class-wp-error.php
r29144 r29454 80 80 81 81 /** 82 * Make private properties set able for backwards compatibility.82 * Make private properties settable for backwards compatibility. 83 83 * 84 84 * @since 4.0.0 … … 107 107 108 108 /** 109 * Make private properties un setable for backwards compatibility.109 * Make private properties un-settable for backwards compatibility. 110 110 * 111 111 * @since 4.0.0 -
trunk/src/wp-includes/class-wp-walker.php
r29165 r29454 41 41 42 42 /** 43 * Wether the current element has children or not. To be used in start_el() 43 * Wether the current element has children or not. 44 * 45 * To be used in start_el(). 44 46 * 45 47 * @since 4.0.0 … … 63 65 64 66 /** 65 * Make private properties set able for backwards compatibility.67 * Make private properties settable for backwards compatibility. 66 68 * 67 69 * @since 4.0.0 … … 90 92 91 93 /** 92 * Make private properties un setable for backwards compatibility.94 * Make private properties un-settable for backwards compatibility. 93 95 * 94 96 * @since 4.0.0 -
trunk/src/wp-includes/class-wp.php
r29216 r29454 677 677 678 678 /** 679 * Make private properties set able for backwards compatibility.679 * Make private properties settable for backwards compatibility. 680 680 * 681 681 * @since 4.0.0 … … 704 704 705 705 /** 706 * Make private properties un setable for backwards compatibility.706 * Make private properties un-settable for backwards compatibility. 707 707 * 708 708 * @since 4.0.0 -
trunk/src/wp-includes/query.php
r29257 r29454 3938 3938 * @access public 3939 3939 * 3940 * @param string $name Property to get 3940 * @param string $name Property to get. 3941 3941 * @return mixed Property. 3942 3942 */ … … 3946 3946 3947 3947 /** 3948 * Make private properties set able for backwards compatibility.3948 * Make private properties settable for backwards compatibility. 3949 3949 * 3950 3950 * @since 4.0.0 … … 3959 3959 3960 3960 /** 3961 * Make private properties set able for backwards compatibility.3961 * Make private properties settable for backwards compatibility. 3962 3962 * 3963 3963 * @since 4.0.0 -
trunk/src/wp-includes/user.php
r29363 r29454 859 859 * @access public 860 860 * 861 * @param string $name Property to get 861 * @param string $name Property to get. 862 862 * @return mixed Property. 863 863 */ … … 867 867 868 868 /** 869 * Make private properties set able for backwards compatibility.869 * Make private properties settable for backwards compatibility. 870 870 * 871 871 * @since 4.0.0 … … 894 894 895 895 /** 896 * Make private properties un setable for backwards compatibility.896 * Make private properties un-settable for backwards compatibility. 897 897 * 898 898 * @since 4.0.0 -
trunk/src/wp-includes/wp-diff.php
r29139 r29454 445 445 446 446 /** 447 * Make private properties set able for backwards compatibility.447 * Make private properties settable for backwards compatibility. 448 448 * 449 449 * @since 4.0.0 … … 472 472 473 473 /** 474 * Make private properties un setable for backwards compatibility.474 * Make private properties un-settable for backwards compatibility. 475 475 * 476 476 * @since 4.0.0
Note: See TracChangeset
for help on using the changeset viewer.