Changeset 36970
- Timestamp:
- 03/12/2016 12:38:48 PM (9 years ago)
- Location:
- trunk/src
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-press-this.php
r36848 r36970 380 380 } 381 381 382 // Does not look like a nURL.382 // Does not look like a URL. 383 383 if ( ! preg_match( '/^([!#$&-;=?-\[\]_a-z~]|%[0-9a-fA-F]{2})+$/', $url ) ) { 384 384 return ''; -
trunk/src/wp-admin/includes/file.php
r36473 r36970 470 470 471 471 /** 472 * Downloads a urlto a local temporary file using the WordPress HTTP Class.472 * Downloads a URL to a local temporary file using the WordPress HTTP Class. 473 473 * Please note, That the calling function must unlink() the file. 474 474 * -
trunk/src/wp-admin/includes/image.php
r36429 r36970 29 29 30 30 if ( ! file_exists( $src_file ) ) { 31 // If the file doesn't exist, attempt a urlfopen on the src link.31 // If the file doesn't exist, attempt a URL fopen on the src link. 32 32 // This can occur with certain file replication plugins. 33 33 $src = _load_image_to_edit_path( $src, 'full' ); -
trunk/src/wp-admin/menu-header.php
r34725 r36970 110 110 111 111 /* 112 * If the string 'none' (previously 'div') is passed instead of a nURL, don't output112 * If the string 'none' (previously 'div') is passed instead of a URL, don't output 113 113 * the default menu image so an icon can be added to div.wp-menu-image as background 114 114 * with CSS. Dashicons and base64-encoded data:image/svg_xml URIs are also handled -
trunk/src/wp-includes/class-wp-embed.php
r35702 r36970 16 16 17 17 /** 18 * When a nURL cannot be embedded, return false instead of returning a link18 * When a URL cannot be embedded, return false instead of returning a link 19 19 * or the URL. Bypasses the 'embed_maybe_make_link' filter. 20 20 */ -
trunk/src/wp-includes/class-wp-http-curl.php
r36069 r36970 352 352 353 353 /** 354 * Determines whether this class can be used for retrieving a nURL.354 * Determines whether this class can be used for retrieving a URL. 355 355 * 356 356 * @static -
trunk/src/wp-includes/comment.php
r36922 r36970 2204 2204 $parsed_url = parse_url($url); 2205 2205 2206 if ( ! isset( $parsed_url['host'] ) ) // Not a nURL. This should never happen.2206 if ( ! isset( $parsed_url['host'] ) ) // Not a URL. This should never happen. 2207 2207 return false; 2208 2208 -
trunk/src/wp-includes/formatting.php
r36775 r36970 4786 4786 4787 4787 /** 4788 * Shorten a nURL, to be used as link text.4788 * Shorten a URL, to be used as link text. 4789 4789 * 4790 4790 * @since 1.2.0 -
trunk/src/wp-includes/rewrite.php
r36960 r36970 448 448 449 449 /** 450 * Examine a urland try to determine the post ID it represents.450 * Examine a URL and try to determine the post ID it represents. 451 451 * 452 452 * Checks are supposedly from the hosted site blog.
Note: See TracChangeset
for help on using the changeset viewer.