| [19471]
|
nacin
|
WP_Screen: Whitelist -new and -add screens, and prevent edit-comments and edit-tags from being mashed on. fixes #19353.
|
| [19324]
|
nacin
|
WP_Screen->post_type is always set. see #19131.
|
| [23436]
|
nacin
|
WP_Query: `post_parent__in` and `post_parent__not_in`. props wonderboymusic. fixes #11056.
|
| [24115]
|
nacin
|
WP_Query: If the post_type QV is an array with only one element, don't treat it as a multiple post type query.
If there is only one post type used by all taxonomies for a tax query, set the post type to the string.
fixes #24204.
|
| [14401]
|
dd32
|
WP_Query whitespace cleanup, some loop cleanup as well
|
| [1032]
|
SergeyBiryukov
|
WP_Query test for tags with Hebrew letter Nun. see #WP21779.
|
| [946]
|
ryan
|
WP_Object_Cache::switch_to_blog() tests. see #WP21434
|
| [16228]
|
scribu
|
WP_Media_List_Table: remove code for displaying old 'actions' column. See #14579
|
| [16229]
|
scribu
|
WP_Media_List_Table: merge display_rows() and display_orphans(). See #14579
|
| [16227]
|
scribu
|
WP_Media_List_Table: Use class property instead of $detached global. See #14579
|
| [3676]
|
ryan
|
WP_Locale. Props Sewar. fixes #2568
|
| [16109]
|
scribu
|
WP_List_Table::no_items() consistency fixes. See #14579
|
| [19824]
|
nacin
|
WP_LANG_DIR is trusted, just need to check $locale. props SergeyBiryukov, fixes #19924.
|
| [14760]
|
ryan
|
WP_Importer class. Props briancolinger. see #13034
|
| [22817]
|
nacin
|
WP_Image_Editor: the last stand.
* Have wp_get_image_editor() rather than WP_Image_Editor::get_instance(). Having static factory methods would be less confusing if there weren't also static methods tied to individual editor implementations.
* Lazy-load the WP_Image_Editor base class and editor implementations.
* Have WP_Image_Editor_GD::supports_mime_type() actually check which types it supports.
* Deprecate gd_edit_image_support() in favor of wp_image_editor_supports().
props DH-Shredder, scribu, markoheijnen. fixes #22356. see #6821.
|
| [22510]
|
ryan
|
WP_Image_Editor improvements.
* Make test() and supports_mime_type() static.
* Add required_methods argument to get_instance(). Allows requesting an implementation that has certain methods/capabilities.
* Whitespace cleanup
Props markoheijnen
see #6821
|
| [13822]
|
nacin
|
WP_I18N_* for .maintenance strings. fixes #12485
|
| [16450]
|
nacin
|
WP_Http_ExtHTTP variable fix. Don't pass an empty array to http_request, props mdawaffe, fixes #13730.
|
| [713]
|
ryan
|
WP_Http::make_absolute_url() tests. Props dd32. see #WP20434
|
| [20207]
|
dd32
|
WP_Http: cURL: Use the parsed args $r, rather than the raw $args. Mentioned in #20219
|
| [23602]
|
dd32
|
WP_HTTP: Specifically mark a static function as being static
|
| [20183]
|
dd32
|
WP_HTTP: Send the body with custom method requests when using cURL. Fixes #18589
|
| [23607]
|
dd32
|
WP_HTTP: Return error responses from cURL for non-blocking requests. Contrary to popular belief, cURL's non-blocking requests are not exact non-blocking, we still wait for cURL to make the request before returning, so making this change aids in development debugging. Props SergeyBiryukov Fixes #23310
|
| [21226]
|
dd32
|
WP_HTTP: Respect that some cookies do not have an expiration time, this is a valid use-case that WP_HTTP_Cookie::test() should not discard, a non-existant expiration date simply means to let it expire at the end of the session. Props mailnew2ster. Fixes #14191
|
| [21230]
|
dd32
|
WP_HTTP: Remove a empty() check that would never be empty due to the format of HTTP Headers, value would always contain at least a space followed by the value. See #14184
|
| [23609]
|
dd32
|
WP_HTTP: Prevent the 'max_body_length' and 'stream_handle' properties of the curl class from leaking between requests by specifically initializing them in every case. See #23472 & r23605
|
| [23603]
|
dd32
|
WP_HTTP: Funnel all redirect requests through WP_HTTP::request() via wp_remote_request() to ensure that the proper transport is chosen for redirects.
This change also moves PHP Streams from redirecting internally, to us handling the redirections in PHP, which brings a more consistent behaviour between transports.
Fixes #23682
|
| [23608]
|
dd32
|
WP_HTTP: Fix returning WP_Error's on too-many-redirects after r23603 See #23682
|
| [23605]
|
dd32
|
WP_HTTP: Enable developers to request the first x bytes of a document using the 'limit-response-size' parameter.
The connection to the remote server will be disconnected after x number of bytes has been received.
See #23472
|
| [23601]
|
dd32
|
WP_HTTP: Do not send a Accept-Encoding header when we're streaming to file, or decompression has been disabled by the caller, See #22913
|
| [20208]
|
dd32
|
WP_HTTP: Curl: Handle Redirections in PHP rather than internally in Curl, Simplifies code flow between safe_mode On and Off, and works around certain bugs. Props simonwheatley for initial patch. Fixes #20219, Fixes #17490
|
| [20370]
|
dd32
|
WP_HTTP: Curl: Correct a typo in [20208] causing failed curl requests not to return a WP_Error under certain situations. Props SergeyBiryukov. Fixes #20219
|
| [20399]
|
dd32
|
WP_HTTP: Curl: $theHeaders is an array, not an object, introduced in [20370]. Props kurtpayne. Fixes #20389 See #20219
|
| [21227]
|
dd32
|
WP_HTTP: Allow for cookies with "empty" values be sent, this affects sending cookies such as test=0, which would previously fail. Props mailnew2ster for initial patch. See #14184
|
| [23600]
|
dd32
|
WP_HTTP: Allow developers to specify a Accept-Encoding header. Fixes #20142
|
| [21225]
|
dd32
|
WP_HTTP: Add a filter to WP_HTTP_Proxy::send_through_proxy() to allow for plugins to modify which requests are sent to a proxy dynamically. Fixes #20222
|
| [21231]
|
dd32
|
WP_HTTP: Add a @link to the Chunked Decode RFC for documentation of how to decode the data correctly. Props mailnew2ster. Fixes #14184
|
| [580]
|
dd32
|
WP_HTTP Tests: Remove ternary operators and assert that it's not a WP_Error directly.
|
| [1205]
|
dd32
|
WP_HTTP Api tests: Ensure that the result is not a WP_Error, skipping this test can cause an uncaught fatal. It looks like the other test cases all catch this.
|
| [1204]
|
dd32
|
WP_HTTP Api tests: Ensure that fsockopen isn't disabled via the 'disable_fsockopen' option, can result in confusing test results
|
| [18964]
|
dd32
|
WP_Filesystem_*::mkdir() untrailingslash path consistently, don't waste time attempting to create an "empty" path. See #15575. Props lordandrei and SergeyBiryukov for initial patches.
|
| [21222]
|
dd32
|
WP_Filesystem: When recursivly searching for a directory path, only search for unfound directory entries. This solves a case where the same directory may be entered twice inadvertantly when nested directories using the same name exist. Fixes #20652
|
| [21223]
|
dd32
|
WP_Filesystem: Return symlinked directory names correctly, previously the FTP extensions would return it as 'source -> dest' instead of simply 'source'. Props kurtpayne. Fixes #17846
|
| [20311]
|
dd32
|
WP_Filesystem: PemFTP: Detect dl() being disabled in order to avoid any fatals which may be produced when the Sockets extension is not available. Props to kurtpayne for initial patch, Fixes #20187
|
| [21221]
|
dd32
|
WP_Filesystem: Correct a rare case where the FTP directory will be detected incorrectly when the final path token exists higher in the chain, for example /x/x/Z/x/Z/ would be detected as /x/x/Z/. Fixes #20934
|
| [8018]
|
ryan
|
WP_Filesystem updates from DD32. See #7059
|
| [11831]
|
azaozz
|
WP_Filesystem fixes and phpdoc, props hakre dd32, see #10304
|
| [3667]
|
ryan
|
WP_Error. fixes #2600
|
| [18519]
|
azaozz
|
WP_Editor: don't show empty div if no editor-buttons and media-buttons are shown, props ocean90, see #17144
|
| [12558]
|
azaozz
|
WP_Dependencies: pass NULL to disable script and style version query strings, props scribu amattie, fixes #11315
|
| [9014]
|
westi
|
WP_DEBUG enabled notice fixes.
|
| [15502]
|
scribu
|
WP_Comments_Table::extra_tablenav() - move the closing div back to it's original position. Fixes #14612. Props josephscott
|
| [15630]
|
scribu
|
WP_Comments_Table cleanup:
* use column_*() methods
* remove extra arguments from single_row()
* introduce derived class WP_Post_Comments_Table for handling the post metabox comments
* use $pending_count property instead of $_comment_pending_count global
See #14579
|
| [1056]
|
ryan
|
WP_Comment_Query tests. see #WP21101
|
| [15330]
|
nacin
|
WPMU->Network Codex link updates. props wpmuguru, see #14014 for trunk.
|
| [10919]
|
ryan
|
WPFS cleanups. Props DD32. fixes #9525
|
| [21160]
|
nacin
|
WP.org no longer returns this old structure. The title of the item is the plugin name in full. fixes #21012.
|
| [9]
|
nacin
|
WP.org P2 child theme: Enqueue CSS on our own so we can bump CSS versions.
|
| [7]
|
nacin
|
WP.org P2 child theme: Add templates and styles for handbooks.
|
| [8]
|
nacin
|
WP.org P2 child theme: Add a navigation menu to the <h2 id="headline"> (like "Make WordPress Core").
|
| [8618]
|
ryan
|
WP-Admin File Level Inline Documentation from santosj. see #7496
|
| [13735]
|
ryan
|
WP importer fixes. Props briancolinger. fixes #12619
|
| [3776]
|
ryan
|
WP importer fixes from mdawaffe. fixes #2727
|
| [4814]
|
ryan
|
WP XML-RPC API enhancements.
|
| [4793]
|
ryan
|
WP XML-RPC API
|
| [11525]
|
azaozz
|
WP Upgrader improvements, props DD32, fixes #9836
|
| [24047]
|
nacin
|
WP Styles: Correctly print 'after' data when scripts are concatenated. props stephenh1988. fixes #20836.
|
| [1516]
|
rboren
|
WP Query class.
|
| [6192]
|
ryan
|
WLW manifest from josephscott. fixes #5023 for trunk
|
| [15239]
|
markjaquith
|
WEAPON LOCKED. http://txfx.net/s/34 props Left Bank Pictures (Strike Back).
|
| [7450]
|
ryan
|
W-P! rocks the CamelCase. Props lloydbudd. fixes #6335
|
| [20236]
|
nacin
|
Visually merge a plugin with its update notice. Same applies to themes in the network admin. Move from 'update automatically' to 'update now'. fixes #20273.
|
| [9842]
|
azaozz
|
Visual design fixes from iammattthomas, fixes #8313
|
| [7230]
|
matt
|
Visual and English tweaks throughout.
|
| [4476]
|
ryan
|
Visual and Code. Props foolswisdom. fixes #3233
|
| [9918]
|
azaozz
|
Visual UI fixes from iammattthomas, fixes #8387
|
| [9639]
|
markjaquith
|
Visibility section of Publish Module for Posts. Pages later.
|
| [9641]
|
markjaquith
|
Visibility section for the Publish Module for Pages
|
| [7090]
|
ryan
|
View switcher styling from mt. fixes #6031
|
| [1647]
|
saxmatt
|
View other's drafts. Still need author editing on the advanced edit form.
|
| [8863]
|
ryan
|
View links for posts and pages. see #7552
|
| [5510]
|
ryan
|
Very rough initial commit of taxonomy for everyone's hacking pleasure. There be dragons. see #4189
|
| [4781]
|
matt
|
Very minor update to styling of page navigation.
|
| [1832]
|
donncha
|
Very minor typo.
|
| [1749]
|
donncha
|
Very minor bugfix - extra ","
|
| [793]
|
saxmatt
|
Version update.
|
| [163]
|
saxmatt
|
Version up.
|
| [1104]
|
saxmatt
|
Version numbers.
|
| [1169]
|
kurtpayne
|
Version numbers like "1.1.1" aren't numeric. Instead, use version_compare to make sure they're greater than version 0.
|
| [2585]
|
matt
|
Version numbers are always irrational anyway
|
| [566]
|
saxmatt
|
Version number change.
|
| [161]
|
saxmatt
|
Version change.
|
| [12167]
|
ryan
|
Version bumps.
|
| [5849]
|
matt
|
Version bumps.
|
| [21710]
|
nacin
|
Version bumps for the 3.4 branch, including a DB version bump for [21709] (see [21707]).
|
| [20550]
|
nacin
|
Version bumps
|
| [16626]
|
ryan
|
Version bumps
|
| [1600]
|
saxmatt
|
Version bump.
|
| [1092]
|
saxmatt
|
Version bump.
|
| [951]
|
saxmatt
|
Version bump.
|