Changeset 61995
- Timestamp:
- 03/12/2026 08:18:18 PM (2 weeks ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 7 edited
-
category-template.php (modified) (1 diff)
-
class-wp-block-parser.php (modified) (1 diff)
-
class-wp-widget.php (modified) (1 diff)
-
functions.php (modified) (2 diffs)
-
ms-blogs.php (modified) (1 diff)
-
ms-deprecated.php (modified) (2 diffs)
-
pluggable.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/category-template.php
r61649 r61995 1259 1259 * @since 4.9.2 The `$taxonomy` parameter was deprecated. 1260 1260 * 1261 * @param int $term Optional. Term ID. Defaults to the current term ID.1262 * @param null $deprecated Deprecated.Not used.1261 * @param int $term Optional. Term ID. Defaults to the current term ID. 1262 * @param mixed $deprecated Not used. 1263 1263 * @return string Term description, if available. 1264 1264 */ -
trunk/src/wp-includes/class-wp-block-parser.php
r61504 r61995 319 319 * @internal 320 320 * @since 5.0.0 321 * @param null $length how many bytes of document text to output.321 * @param null|int $length How many bytes of document text to output. 322 322 */ 323 323 public function add_freeform( $length = null ) { -
trunk/src/wp-includes/class-wp-widget.php
r61432 r61995 547 547 * @since 2.8.0 548 548 * 549 * @param WP_Widget $widget The widget instance (passed by reference).550 * @param null $returnReturn null if new fields are added.551 * @param array $instance An array of the widget's settings.549 * @param WP_Widget $widget The widget instance (passed by reference). 550 * @param null|string $return Default 'noform'. Return null if new fields are added. 551 * @param array $instance An array of the widget's settings. 552 552 */ 553 553 do_action_ref_array( 'in_widget_form', array( &$this, &$return, $instance ) ); -
trunk/src/wp-includes/functions.php
r61857 r61995 2887 2887 * 2888 2888 * @param string $name Filename. 2889 * @param null|string $deprecated N everused. Set to null.2889 * @param null|string $deprecated Not used. Set to null. 2890 2890 * @param string $bits File content 2891 2891 * @param string|null $time Optional. Time formatted in 'yyyy/mm'. Default null. … … 5854 5854 } 5855 5855 } 5856 5856 5857 /** 5857 5858 * Marks a function argument as deprecated and inform when it has been used. -
trunk/src/wp-includes/ms-blogs.php
r61772 r61995 756 756 * @param string $pref Field name. 757 757 * @param string $value Field value. 758 * @param null$deprecated Not used.758 * @param mixed $deprecated Not used. 759 759 * @return string|false $value 760 760 */ -
trunk/src/wp-includes/ms-deprecated.php
r61411 r61995 695 695 * 696 696 * @since 3.0.0 697 * @since 3.0.2 Deprecated fourth argument. 697 698 * @deprecated 5.3.0 Use wp_update_user() 698 699 * @see wp_update_user() … … 704 705 * in (presumably user_status, spam, or deleted). 705 706 * @param int $value The new status for the user. 706 * @param null $deprecated Deprecated as of 3.0.2 and should not beused.707 * @param mixed $deprecated Not used. 707 708 * @return int The initially passed $value. 708 709 */ -
trunk/src/wp-includes/pluggable.php
r61633 r61995 2264 2264 * 2265 2265 * @param int $user_id User ID. 2266 * @param null $deprecated Not used (argument deprecated).2266 * @param mixed $deprecated Not used. 2267 2267 * @param string $notify Optional. Type of notification that should happen. Accepts 'admin' or an empty 2268 2268 * string (admin only), 'user', or 'both' (admin and user). Default empty.
Note: See TracChangeset
for help on using the changeset viewer.