Changeset 25085
- Timestamp:
- 08/22/2013 03:55:07 PM (12 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-image-editor.php
r24727 r25085 331 331 ob_start(); 332 332 } else { 333 // The directory containing the original file may no longer exist when using a replication plugin. 334 wp_mkdir_p( dirname( $filename ) ); 333 // The directory containing the original file may no longer exist when using a replication plugin. 334 wp_mkdir_p( dirname( $filename ) ); 335 335 } 336 336 -
trunk/src/wp-includes/l10n.php
r25059 r25085 499 499 $path = get_template_directory(); 500 500 501 // Load the textdomain according to the theme 501 // Load the textdomain according to the theme 502 502 $mofile = "{$path}/{$locale}.mo"; 503 503 if ( $loaded = load_textdomain( $domain, $mofile ) ) -
trunk/src/wp-includes/link-template.php
r25079 r25085 2352 2352 global $wp_query; 2353 2353 $post_id = 0; 2354 if ( 'query' == $context && is_singular() ) { 2354 if ( 'query' == $context && is_singular() ) { 2355 2355 $post_id = $wp_query->get_queried_object_id(); 2356 2356 $post = get_post( $post_id ); -
trunk/src/wp-includes/ms-functions.php
r25018 r25085 1704 1704 * 1705 1705 * @param string|WP_User $user Optional. Defaults to current user. WP_User object, 1706 * or user login name as a string. 1706 * or user login name as a string. 1707 1707 * @return bool 1708 1708 */
Note: See TracChangeset
for help on using the changeset viewer.