..
css
Compress scripts/styles: 3.6-alpha-23230.
2012-12-29 22:58:34 +00:00
images
Copy wpspin_light to wp-includes as wpspin.gif. Use it in media views. see #22728 .
2012-12-04 16:18:53 +00:00
js
Media: Automatically select uploading attachments in single-select workflows.
2013-01-04 06:44:21 +00:00
pomo
Fix typos in comments. Props SergeyBiryukov, see #22337
2012-10-31 23:56:23 +00:00
SimplePie
SimplePie: Return nothing and throw an error in SimplePie_Sanitize when DOMDocument is disabled.
2012-12-02 16:43:12 +00:00
Text
theme-compat
Don't return encoded ampersands from get_post_comments_feed_link() to avoid canonical redirect issues. Apply esc_url() when appropriate.
2012-11-07 19:56:10 +00:00
admin-bar.php
Use the create_posts post type cap in more places. Remove the janky create_posts meta cap. see #16714 .
2012-11-28 22:28:20 +00:00
atomlib.php
Lose EOF ?>. Clean up EOF newlines. fixes #12307
2012-01-08 17:01:11 +00:00
author-template.php
Use get_post() instead of global $post.
2012-09-04 16:29:28 +00:00
bookmark-template.php
In wp_list_bookmarks(), don't stomp the categorize argument. Fixes categorized display in the links widget.
2012-11-28 23:19:03 +00:00
bookmark.php
Don't cache a non-existent link in get_bookmark(). props wonderboymusic, fixes #21159 .
2012-09-13 16:41:43 +00:00
cache.php
Pinking shears
2012-11-17 15:11:29 +00:00
canonical.php
Use network_site_url() for wp-signup.php. props markjaquith. see #19796 .
2012-09-11 12:27:25 +00:00
capabilities.php
Make current_user_can_for_blog() safe to run single site.
2012-12-07 09:53:27 +00:00
category-template.php
Don't bail from get_the_terms() if the post type is not registed for the taxonomy. This can break back compat when add_post_type_support( 'page', 'post-formats' ) is called but register_taxonomy_for_object_type( 'postr_-format', 'page' ) is not.
2012-11-20 18:31:06 +00:00
category.php
Pinking shears
2012-11-17 15:11:29 +00:00
class-feed.php
Do SimplePie sanitization with wp_kses_post() rather than DOMDocument, which cannot be guaranteed to be available.
2012-11-22 07:23:43 +00:00
class-http.php
HTTP API: Introduce wp_is_writable() to wrap win_is_writable() and is_writable() to work around PHP Windows ACL issues. See #22900 for trunk
2013-01-03 08:04:11 +00:00
class-IXR.php
Specify the encoding in IXR_Server::output(). Props solarissmoke, sergey.s.betke@novgaro.ru, SergeyBiryukov. fixes #4794
2012-08-15 20:12:00 +00:00
class-json.php
Lose EOF ?>. Clean up EOF newlines. fixes #12307
2012-01-08 17:01:11 +00:00
class-oembed.php
Check for DOMDocument when parsing oEmbed XML responses.
2012-12-10 22:49:45 +00:00
class-phpass.php
Fix typos in documentation (wp-includes/[a-h]). See #18560 .
2011-09-03 16:02:41 +00:00
class-phpmailer.php
Do not pass mail() a fourth argument when safe_mode is in effect.
2012-06-26 03:54:17 +00:00
class-pop3.php
class-simplepie.php
Update SimplePie to 1.3.1. Props rmccue, ocean90. fixes #22321
2012-11-05 14:25:25 +00:00
class-smtp.php
Upgrade PHPMailer to 5.2.1. Props MattyRob. fixes #19887
2012-02-07 16:13:51 +00:00
class-snoopy.php
class-wp-admin-bar.php
Skip To links: visually hide by only setting top: -1000em; (this should make them work well in all screen readers), fixes #21312
2012-11-20 21:14:49 +00:00
class-wp-ajax-response.php
Specify the charset in WP_Ajax_Response::send(). Props sergey.s.betke@novgaro.ru, SergeyBiryukov. fixes #19448
2012-08-15 18:17:21 +00:00
class-wp-customize-control.php
Customizer uploader control: Pass arrays of extensions around instead. see #22149 .
2012-11-10 04:59:46 +00:00
class-wp-customize-manager.php
Pinking shears
2012-11-17 15:11:29 +00:00
class-wp-customize-section.php
Keyboard accessibility for the theme customizer. props lessbloat, jorbin, JustinSainton. fixes #21283 .
2012-11-06 14:47:25 +00:00
class-wp-customize-setting.php
Pinking shears
2012-11-17 15:11:29 +00:00
class-wp-editor.php
Ensure [23122] gets parsed as context. props TobiasBg. fixes #22808 .
2012-12-07 18:50:16 +00:00
class-wp-embed.php
Invalidate oEmbed caches on pre_post_update instead of save_post so existing metadata caches may be used. fixes #22190 .
2012-11-05 16:47:04 +00:00
class-wp-error.php
Lose EOF ?>. Clean up EOF newlines. fixes #12307
2012-01-08 17:01:11 +00:00
class-wp-http-ixr-client.php
Lose EOF ?>. Clean up EOF newlines. fixes #12307
2012-01-08 17:01:11 +00:00
class-wp-image-editor-gd.php
Only unset() after we have confirmed we are not dealing with a WP_Error. props DH-Shredder. fixes #22824 .
2012-12-09 17:02:22 +00:00
class-wp-image-editor-imagick.php
Only unset() after we have confirmed we are not dealing with a WP_Error. props DH-Shredder. fixes #22824 .
2012-12-09 17:02:22 +00:00
class-wp-image-editor.php
Image editors: After cropping, request new sizes from the image. If we rely on the values passed in, they may be floats. We must see what the image results in.
2012-12-06 07:56:04 +00:00
class-wp-theme.php
Make current_user_can_for_blog() safe to run single site.
2012-12-07 09:53:27 +00:00
class-wp-walker.php
Objects no longer need to be explicitly passed by ref to call_user_func*() to be callable. Props wonderboymusic. fixes #21865
2012-10-04 20:00:16 +00:00
class-wp-xmlrpc-server.php
Remove XML-RPC's blogger::getTemplate and setTemplate. They are not supported and do nothing.
2012-11-29 02:35:39 +00:00
class-wp.php
Avoid 'headers already sent' messages for header_remove() the same way we currently do with header(). props ryan. fixes #22258 .
2012-10-25 20:38:55 +00:00
class.wp-dependencies.php
Revert [21420] and [21481]. Accepting a string caused back compat problems including the possibility of revealing previously hidden circular dependencies resulting in infinite loops.
2012-10-23 20:32:12 +00:00
class.wp-scripts.php
Allow protocol-relative URLs when registering/enqueueing scripts and styles.
2012-06-28 20:18:38 +00:00
class.wp-styles.php
Allow protocol-relative URLs when registering/enqueueing scripts and styles.
2012-06-28 20:18:38 +00:00
comment-template.php
Put required field indicators within labels. Update styling of bundled themes to accommodate. Props MikeHansenMe. fixes #21897
2012-10-05 16:34:32 +00:00
comment.php
its <=> it's in documentation, along with a rogue the, The, and looses. props trepmal. fixes #22665 .
2012-12-20 15:55:32 +00:00
compat.php
Restore compat for json_decode and json_encode. fixes #18015 for trunk.
2011-07-06 23:33:05 +00:00
cron.php
Introduce constants to allow for easier expression of time periods in seconds. Adds MINUTE_IN_SECONDS, HOUR_IN_SECONDS, DAY_IN_SECONDS, WEEK_IN_SECONDS, YEAR_IN_SECONDS. props nbachiyski, SergeyBiryukov. fixes #20987 .
2012-09-25 05:26:19 +00:00
default-constants.php
Add comments to time intervals we cannot express with the constants. Fix a comment. props SergeyBiryukov. fixes #20987 .
2012-11-10 18:13:09 +00:00
default-filters.php
Fix option name. props ocean90, see #21719 .
2012-09-27 19:19:18 +00:00
default-widgets.php
Add context to the 'Random' string. It is now used in two places: gallery order and the links widget. props pavelevap, fixes #22724 .
2012-12-04 14:49:44 +00:00
deprecated.php
Add missing @ to phpdoc for gd_edit_image_support(). props tw2113. fixes #23046 .
2012-12-23 16:22:22 +00:00
feed-atom-comments.php
its <=> it's in documentation, along with a rogue the, The, and looses. props trepmal. fixes #22665 .
2012-12-20 15:55:32 +00:00
feed-atom.php
Don't return encoded ampersands from get_post_comments_feed_link() to avoid canonical redirect issues. Apply esc_url() when appropriate.
2012-11-07 19:56:10 +00:00
feed-rdf.php
feed-rss2-comments.php
Use get_search_query() in feed-rss2-comments.php. Props SergeyBiryukov. fixes #21365
2012-07-25 18:04:17 +00:00
feed-rss2.php
Use the_content_feed() when looking for zero-length post content for RSS2 feeds. Now you can have blank posts with content generated by the_content filters. props SergeyBiryukov. fixes #15604
2012-07-09 03:33:01 +00:00
feed-rss.php
Use the site's locale for the feed language. Provides the same result as language_attributes(). Removes the rss_language option. fixes #13440 . see #5517 .
2012-01-29 19:56:33 +00:00
feed.php
Do SimplePie sanitization with wp_kses_post() rather than DOMDocument, which cannot be guaranteed to be available.
2012-11-22 07:23:43 +00:00
formatting.php
s/Santizes/Sanitizes/ in phpdoc for sanitize_html_class(). props cais. fixes #22890 .
2012-12-20 15:40:37 +00:00
functions.php
Correct an incorrect PHPDoc s/@see/@link/ introduced in r23254. See #22900
2013-01-03 08:05:48 +00:00
functions.wp-scripts.php
Have wp_script_is() and wp_style_is() accept 'enqueued', as it reads better than 'queue' and is consistent with 'registered'. fixes #21741 .
2012-08-30 18:57:57 +00:00
functions.wp-styles.php
Have wp_script_is() and wp_style_is() accept 'enqueued', as it reads better than 'queue' and is consistent with 'registered'. fixes #21741 .
2012-08-30 18:57:57 +00:00
general-template.php
Pinking shears
2012-11-17 15:11:29 +00:00
http.php
Handle pre-flighted OPTIONS requests in send_origin_headers(). Props nacin. fixes #21024
2012-09-24 21:39:04 +00:00
kses.php
Recommend the wp_kses_allowed_html filter over CUSTOM_TAGS. Soft deprecate CUSTOM_TAGS. see #17977 , #20210 .
2012-09-10 18:00:41 +00:00
l10n.php
Theme Translations: Allow for theme pomo files to be loaded from WP_LANG_DIR/themes/{$domain}-{$locale}.(p|m)o.
2012-10-31 21:30:33 +00:00
link-template.php
Pass the post ID from the_shortlink() to wp_get_shortlink() to avoid a change in filters. props SergeyBiryukov, fixes #21309 .
2012-11-14 05:05:34 +00:00
load.php
* Register blog-id-cache group as global
2012-10-01 18:03:23 +00:00
locale.php
Add a translator's comment. see #19924 .
2012-02-06 19:43:26 +00:00
media-template.php
Two media gallery string changes, for clarity:
2012-12-09 17:11:25 +00:00
media.php
Limit the execution of wp_enqueue_media() to once per page. Prevents multiple _wpMediaViewsL10n variables. see #22843 .
2012-12-27 16:07:12 +00:00
meta.php
Defer the meta_id-fetching query until after comparison of the previous value, so that redundant calls to update_metadata() can bail without making that query. props nacin. fixes #22191
2012-10-15 05:51:38 +00:00
ms-blogs.php
its <=> it's in documentation, along with a rogue the, The, and looses. props trepmal. fixes #22665 .
2012-12-20 15:55:32 +00:00
ms-default-constants.php
Multisite in a subdirectory: For subdomain installs, use a root admin cookie path, not a wp-admin specific one.
2012-12-04 00:51:02 +00:00
ms-default-filters.php
Remove ms-files.php rewriting from WordPress multisite. fixes #19235 .
2012-09-11 22:22:20 +00:00
ms-deprecated.php
Undeprecate *_blog_option() by popular demand. Put them back in ms-blogs.php since direct inclusion of ms-blogs.php/ms-functions.php is unforntunately common.
2012-08-08 17:11:15 +00:00
ms-files.php
Lose EOF ?>. Clean up EOF newlines. fixes #12307
2012-01-08 17:01:11 +00:00
ms-functions.php
Use $current_site->path instead of $base in wpmu_validate_blog_signup(), as $base is now dead. props MarkJaquith. fixes #22787 . see #19796 .
2012-12-06 09:43:52 +00:00
ms-load.php
Merge two strings. props pavelevap, see #22306 .
2012-11-07 22:03:23 +00:00
ms-settings.php
Resurrect the switched global. Some are still using it. see #21459
2012-08-22 03:34:00 +00:00
nav-menu-template.php
Confirm that the nav menu's underlying object is in the proper taxonomy before adding the current-menu-item class. props SergeyBiryukov. fixes #21369 .
2012-10-25 20:32:01 +00:00
nav-menu.php
Correctly associate new menu items with a menu when using wp_update_nav_menu_item()
2012-11-06 14:46:56 +00:00
option.php
Trim the option name in get_option() before calling the pre_option_$option filter, not after. props evansolomon. fixes #22358 .
2012-11-17 13:20:57 +00:00
pluggable-deprecated.php
Correct the deprecated notice in AtomPub's deprecated class. see #22855 .
2012-12-26 20:35:27 +00:00
pluggable.php
Move 'endif;' to its own line instead of having it room with a right curly brace. props dimadin. fixes #22586
2012-12-29 18:01:41 +00:00
plugin.php
Correct phpdoc for wp-includes/plugin.php: wp-content/plugins/, not wp-content/plugin/. props technosailor. fixes #23024 .
2012-12-20 15:49:55 +00:00
post-template.php
Pinking shears
2012-11-17 15:11:29 +00:00
post-thumbnail-template.php
Fix the PHPDoc for the_post_thumbnail(). props georgestephanis. fixes #22885
2012-12-29 17:59:08 +00:00
post.php
Always return arrays from get_post_ancestors(). Return an array when passed a value that evaluates to false.
2012-12-27 15:48:18 +00:00
query.php
its <=> it's in documentation, along with a rogue the, The, and looses. props trepmal. fixes #22665 .
2012-12-20 15:55:32 +00:00
registration-functions.php
Lose EOF ?>. Clean up EOF newlines. fixes #12307
2012-01-08 17:01:11 +00:00
registration.php
Lose EOF ?>. Clean up EOF newlines. fixes #12307
2012-01-08 17:01:11 +00:00
rewrite.php
Update the old wp-app.php rule to allow for a trailing slash followed by endpoint data. props wonderboymusic. fixes #22035 .
2012-11-07 21:27:02 +00:00
rss-functions.php
Lose EOF ?>. Clean up EOF newlines. fixes #12307
2012-01-08 17:01:11 +00:00
rss.php
its <=> it's in documentation, along with a rogue the, The, and looses. props trepmal. fixes #22665 .
2012-12-20 15:55:32 +00:00
script-loader.php
Update the script loader to reflect the actual version of Underscore.js in trunk. props markoheijnen.
2012-12-27 21:29:29 +00:00
shortcodes.php
Update shortcode regular expression commentary. See #17657 .
2012-11-06 14:47:33 +00:00
taxonomy.php
Clear the object term relationships cache in wp_set_object_terms() rather than wp_set_post_terms(). This should be done lower in the stack than wp_set_post_terms().
2012-11-27 19:42:38 +00:00
template-loader.php
Clean up [22347] a bit. see #14348
2012-10-31 23:01:13 +00:00
template.php
Ensure that get_archive_template() only loads a post type archive (archive-$post_type.php file) if there is exactly one post type in the query.
2013-01-03 06:17:47 +00:00
theme.php
its <=> it's in documentation, along with a rogue the, The, and looses. props trepmal. fixes #22665 .
2012-12-20 15:55:32 +00:00
update.php
Introduce constants to allow for easier expression of time periods in seconds. Adds MINUTE_IN_SECONDS, HOUR_IN_SECONDS, DAY_IN_SECONDS, WEEK_IN_SECONDS, YEAR_IN_SECONDS. props nbachiyski, SergeyBiryukov. fixes #20987 .
2012-09-25 05:26:19 +00:00
user.php
Return WP_Error from wp_update_user() on a non-existent user, avoiding a fatal error in the process.
2012-12-27 15:36:08 +00:00
vars.php
TinyMCE: better exclusion of Opera mobile, fixes #21416
2012-07-30 19:40:52 +00:00
version.php
Compress scripts/styles: 3.6-alpha-23257.
2013-01-03 22:58:37 +00:00
widgets.php
Minor phpdoc fixes for register_sidebar(). props SergeyBiryukov. fixes #22905 .
2012-12-23 22:11:37 +00:00
wlwmanifest.xml
Lose EOF ?>. Clean up EOF newlines. fixes #12307
2012-01-08 17:01:11 +00:00
wp-db.php
Enforce a minimum of two arguments for wpdb::prepare(). The first argument is the query (or fragment thereof), which is required. Additional arguments are values to substitute into placeholders.
2012-11-07 19:30:59 +00:00
wp-diff.php
Objects no longer need to be explicitly passed by ref to call_user_func*() to be callable. Props wonderboymusic. fixes #21865
2012-10-04 20:00:16 +00:00