Changeset 61139
- Timestamp:
- 11/04/2025 07:49:55 PM (9 days ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 4 edited
-
rest-api/class-wp-rest-request.php (modified) (3 diffs)
-
rest-api/class-wp-rest-server.php (modified) (2 diffs)
-
shortcodes.php (modified) (1 diff)
-
template.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/rest-api/class-wp-rest-request.php
r60074 r61139 536 536 * @since 4.4.0 537 537 * 538 * @return array Parameter map of key to value 538 * @return array Parameter map of key to value. 539 539 */ 540 540 public function get_query_params() { … … 588 588 * @since 4.4.0 589 589 * 590 * @return array Parameter map of key to value 590 * @return array Parameter map of key to value. 591 591 */ 592 592 public function get_file_params() { … … 614 614 * @since 4.4.0 615 615 * 616 * @return array Parameter map of key to value 616 * @return array Parameter map of key to value. 617 617 */ 618 618 public function get_default_params() { -
trunk/src/wp-includes/rest-api/class-wp-rest-server.php
r61114 r61139 168 168 * 169 169 * @return WP_Error|null|true WP_Error indicates unsuccessful login, null indicates successful 170 * or no authentication provided 170 * or no authentication provided. 171 171 */ 172 172 public function check_authentication() { … … 228 228 * @param string $message Human-readable message. 229 229 * @param int|null $status Optional. HTTP status code to send. Default null. 230 * @return string JSON representation of the error 230 * @return string JSON representation of the error. 231 231 */ 232 232 protected function json_error( $code, $message, $status = null ) { -
trunk/src/wp-includes/shortcodes.php
r60901 r61139 320 320 * 321 321 * @param array $tagnames Optional. List of shortcodes to find. Defaults to all registered shortcodes. 322 * @return string The shortcode search regular expression 322 * @return string The shortcode search regular expression. 323 323 */ 324 324 function get_shortcode_regex( $tagnames = null ) { -
trunk/src/wp-includes/template.php
r61120 r61139 628 628 * @see get_query_template() 629 629 * 630 * @return string Full path to singular template file 630 * @return string Full path to singular template file. 631 631 */ 632 632 function get_singular_template() {
Note: See TracChangeset
for help on using the changeset viewer.