Commit Graph

11972 Commits

Author SHA1 Message Date
Mark Jaquith 159b426ef5 Don't display errors for XML-RPC requests, as they malform the response.
fixes #23811. props kovshenin, markoheijnen.

git-svn-id: https://develop.svn.wordpress.org/trunk@24564 602fd350-edb4-49c9-b593-d223f7449a82
2013-07-05 17:38:14 +00:00
Mark Jaquith 12ff8a31c3 Prevent invalid queries in certain empty-array-passing meta_query cases.
fixes #22096. props wonderboymusic.

git-svn-id: https://develop.svn.wordpress.org/trunk@24563 602fd350-edb4-49c9-b593-d223f7449a82
2013-07-05 16:40:46 +00:00
bumpbot 2fd98a828c Compress scripts/styles: 3.6-beta4-24560.
git-svn-id: https://develop.svn.wordpress.org/trunk@24561 602fd350-edb4-49c9-b593-d223f7449a82
2013-07-05 15:42:57 +00:00
Mark Jaquith b275c9418f Keep the Nav Menu walker from blowing up the layout on empty-titled items.
fixes #23254. props cais, SergeyBiryukov.

git-svn-id: https://develop.svn.wordpress.org/trunk@24560 602fd350-edb4-49c9-b593-d223f7449a82
2013-07-05 15:41:46 +00:00
Ryan Boren 2093f293c7 Don't sync the blog public option from noindex(). This can cause race conditions.
fixes #23155


git-svn-id: https://develop.svn.wordpress.org/trunk@24559 602fd350-edb4-49c9-b593-d223f7449a82
2013-07-05 15:17:31 +00:00
Mark Jaquith 977c747f43 Hide the Revisions meta box content if no-JS, as JS is required to actually do anything with revisions.
fixes #24405. props DrewAPicture, MikeHansenMe.

git-svn-id: https://develop.svn.wordpress.org/trunk@24557 602fd350-edb4-49c9-b593-d223f7449a82
2013-07-05 15:04:24 +00:00
Mark Jaquith 00e2ca3b6f Remove some more post format functions.
props wonderboymusic. fixes #24610.

git-svn-id: https://develop.svn.wordpress.org/trunk@24555 602fd350-edb4-49c9-b593-d223f7449a82
2013-07-04 06:57:00 +00:00
Dominik Schilling (ocean90) cf6a29cfa1 Lose content removal and splitting from get_content_url(). And remove unneeded lines from [24400].
fixes #24484.

git-svn-id: https://develop.svn.wordpress.org/trunk@24554 602fd350-edb4-49c9-b593-d223f7449a82
2013-07-03 22:36:13 +00:00
Andrew Nacin bc4b7fd0a5 Allow gallery to be inserted with no links on the images. props chipbennett, helgatheviking, aaroncampbell, wonderboymusic. fixes #18178.
git-svn-id: https://develop.svn.wordpress.org/trunk@24550 602fd350-edb4-49c9-b593-d223f7449a82
2013-07-03 20:43:19 +00:00
Andrew Nacin 9bac10425e Remove attachment_url_to_postid(). props kovshenin, wonderboymusic. see #24458.
git-svn-id: https://develop.svn.wordpress.org/trunk@24548 602fd350-edb4-49c9-b593-d223f7449a82
2013-07-03 20:23:48 +00:00
Andrew Nacin 58b96f9dd5 Call shortcode functions directly. props kovshenin, fixes #24505.
git-svn-id: https://develop.svn.wordpress.org/trunk@24547 602fd350-edb4-49c9-b593-d223f7449a82
2013-07-03 20:19:00 +00:00
Andrew Nacin 8ceb51f88e jQuery 1.10.2. props ocean90. fixes #24426.
git-svn-id: https://develop.svn.wordpress.org/trunk@24546 602fd350-edb4-49c9-b593-d223f7449a82
2013-07-03 20:11:44 +00:00
Andrew Ozz fb5b41aa7b TinyMCE: normalize font size for H1 - H6 submenu, fixes #24586.
git-svn-id: https://develop.svn.wordpress.org/trunk@24545 602fd350-edb4-49c9-b593-d223f7449a82
2013-07-03 02:03:19 +00:00
Dominik Schilling (ocean90) 925e2f67ee Replace the `cite` element with a `b` element to markup the comment author in comment_html5().
In HTML5 the `cite` element isn't valid for just an author's name.
"The cite element represents the title of a work [..] A person's name is not the title of a work" (http://www.w3.org/TR/html5/text-level-semantics.html#the-cite-element)

fixed #24522.

git-svn-id: https://develop.svn.wordpress.org/trunk@24539 602fd350-edb4-49c9-b593-d223f7449a82
2013-07-01 18:26:16 +00:00
bumpbot 5e24625852 Compress scripts/styles: 3.6-beta4-24534.
git-svn-id: https://develop.svn.wordpress.org/trunk@24534 602fd350-edb4-49c9-b593-d223f7449a82
2013-07-01 16:11:01 +00:00
Dominik Schilling (ocean90) a0aa4fa4b0 RTL: Use `direction: ltr` for the URL inputs in the media frame. props DrewAPicture. fixed #24326.
git-svn-id: https://develop.svn.wordpress.org/trunk@24533 602fd350-edb4-49c9-b593-d223f7449a82
2013-07-01 10:15:07 +00:00
Sergey Biryukov 21704cfdc0 Make wp_mail() return the actual result of PHPMailer::Send() instead of always returning true. props chmac. fixes #23642.
git-svn-id: https://develop.svn.wordpress.org/trunk@24530 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-29 23:03:13 +00:00
Andrew Ozz 1819e0f2c2 Nonce refresh:
- Update the heartbeat nonce when refreshing nonces on the Edit Post screen.
- After a user logs in from the auth-check dialog, speed up heatrbeat to check/refresh nonces on the Edit Post screen.
- Speeding up heartbeat: bring back the setting how long it should last (how many ticks).
- Add 'heartbeat-nonces-expired' jQuery event when nonces have expired and the user is logged in.
See #23295, see #23216.

git-svn-id: https://develop.svn.wordpress.org/trunk@24528 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-29 01:31:44 +00:00
Andrew Nacin f8d88e8dd7 Comment form: Add HTML classes.
* #respond gains .comment-respond
 * #reply-title gains .comment-reply-titlw
 * form gains .comment-form

props obenland.
see #23851.



git-svn-id: https://develop.svn.wordpress.org/trunk@24525 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-27 21:18:08 +00:00
Andrew Nacin c2350dee89 Improve the HTML classes for the new html5 format in get_search_form().
Update Twenty Thirteen to reflect the changes.

props obenland.
fixes #23850.



git-svn-id: https://develop.svn.wordpress.org/trunk@24524 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-27 20:45:12 +00:00
bumpbot d1d4859b11 Compress scripts/styles: 3.6-beta4-24523.
git-svn-id: https://develop.svn.wordpress.org/trunk@24523 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-27 18:25:01 +00:00
Andrew Nacin 0d3ca6acdd Add strict check in wp_xmlrpc_server::set_custom_fields(). The slash strip ensures these values are the same data type, but it might not be that way forever. props xknown.
git-svn-id: https://develop.svn.wordpress.org/trunk@24521 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-27 02:46:23 +00:00
Mark Jaquith ac0d0d1dee Cleanup of the revisions screen, both on the PHP API side, and the JS.
* Much simpler PHP API
* Cleaner and more Backbone-y JS API
* Consequently, does batch queries; this now scales up to hundreds of revisions

Currently missing, but much easier considering the cleaned up base:

* Compare two mode
* RTL

props koopersmith, nacin, adamsilverstein, ocean90. see #24425

git-svn-id: https://develop.svn.wordpress.org/trunk@24520 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-26 21:06:50 +00:00
Andrew Nacin a0601fabfe Media: Render unsupported audio files as links instead of mediaelement. props kovshenin, fixes #23798.
git-svn-id: https://develop.svn.wordpress.org/trunk@24519 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-26 20:42:01 +00:00
Andrew Nacin a85b87515e Remove some old debug cruft left by yours truly. fixes #24462.
git-svn-id: https://develop.svn.wordpress.org/trunk@24518 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-26 19:33:58 +00:00
Ryan Boren 33188fb613 Normalize the UTF-8 and ISO-8859-1 charset strings stored in blog_charset to make them friendlier with PHP functions that accept a charset such as htmlspecialchars().
fixes #23688


git-svn-id: https://develop.svn.wordpress.org/trunk@24510 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-25 19:03:17 +00:00
Sergey Biryukov 6fc38f8160 Correct inline docs for is_wp_error(). props johnbillion. fixes #24637.
git-svn-id: https://develop.svn.wordpress.org/trunk@24507 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-24 18:23:45 +00:00
Sergey Biryukov b5bb40cf2a Use capitalized ID column name in get_adjacent_post(). props hypertextranch. fixes #24575.
git-svn-id: https://develop.svn.wordpress.org/trunk@24506 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-24 13:11:43 +00:00
Sergey Biryukov 7c906b0c38 Avoid an undefined index notice in WP_Widget_Recent_Posts::update(). props jrf. fixes #24577.
git-svn-id: https://develop.svn.wordpress.org/trunk@24504 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-23 08:20:08 +00:00
Andrew Nacin 0e18d28947 Broader fix for [24497] for setup-config.php in trunk. props SergeyBiryukov, markoheijnen. fixes #24627.
git-svn-id: https://develop.svn.wordpress.org/trunk@24503 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-23 06:02:19 +00:00
Sergey Biryukov 7c75f1e337 Use correct backreference in obsolete feed redirection code. props sweetie089. fixes #24623.
git-svn-id: https://develop.svn.wordpress.org/trunk@24502 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-22 12:09:28 +00:00
Andrew Nacin a68ed07ee4 3.6-beta4
git-svn-id: https://develop.svn.wordpress.org/trunk@24500 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-21 19:51:53 +00:00
Andrew Nacin e0573ef18a Only call wp_kses_bad_protocol() in WP_HTTP if it exists. It does not in setup-config.php.
git-svn-id: https://develop.svn.wordpress.org/trunk@24497 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-21 19:05:15 +00:00
Andrew Nacin 46022a51de Partially revert [24459] and only flush insert_id on the next insert or replace query, as we had been doing before. (Yes, this is not how mysql_insert_id() works.)
git-svn-id: https://develop.svn.wordpress.org/trunk@24494 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-21 18:22:26 +00:00
Sergey Biryukov de2951b057 Correct return value for get_role() and WP_Roles::get_role(). props tivnet. fixes #24607.
git-svn-id: https://develop.svn.wordpress.org/trunk@24491 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-21 13:01:55 +00:00
Sergey Biryukov fbc2a6ca6d PHPDoc fixes and additions. fixes #24616.
git-svn-id: https://develop.svn.wordpress.org/trunk@24490 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-21 12:45:11 +00:00
Andrew Nacin 53e6fb4376 Remove redundant swfupload-all.js file.
git-svn-id: https://develop.svn.wordpress.org/trunk@24488 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-21 09:26:18 +00:00
bumpbot 43ef5ad911 Compress scripts/styles: 3.6-beta3-24485. TinyMCE updated.
git-svn-id: https://develop.svn.wordpress.org/trunk@24485 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-21 07:19:07 +00:00
Andrew Nacin fe79cf8fd7 Change the HTTP API's URL validation default, in trunk.
git-svn-id: https://develop.svn.wordpress.org/trunk@24482 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-21 06:17:56 +00:00
Andrew Nacin dfcf4b5eae Better validation of the URL used in core HTTP requests.
git-svn-id: https://develop.svn.wordpress.org/trunk@24480 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-21 06:07:47 +00:00
Andrew Nacin 7380690be8 Update TinyMCE media plugin's moxieplayer.swf to latest.
git-svn-id: https://develop.svn.wordpress.org/trunk@24476 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-21 05:57:22 +00:00
Andrew Nacin f23577500c Build the media item HTML in a clearer manner in the legacy Plupload handler JS. Also update the retired SWFUpload handler JS.
git-svn-id: https://develop.svn.wordpress.org/trunk@24472 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-21 03:44:48 +00:00
Andrew Nacin fbc7ae43c8 Better sanity checks in oEmbed XML handling. see [23158].
git-svn-id: https://develop.svn.wordpress.org/trunk@24470 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-21 03:29:13 +00:00
Andrew Nacin 3c3b517e07 Update swfupload binary.
git-svn-id: https://develop.svn.wordpress.org/trunk@24468 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-21 03:16:52 +00:00
Andrew Nacin 43dcd6d9f4 Validate post password hash.
git-svn-id: https://develop.svn.wordpress.org/trunk@24466 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-21 03:00:26 +00:00
Andrew Nacin 626e77ec3b Add strict check to wp_verify_nonce() to avoid issues when it is improperly called.
git-svn-id: https://develop.svn.wordpress.org/trunk@24461 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-21 02:11:31 +00:00
Andrew Nacin 3c5073e119 Have wpdb::flush() reset more variables.
git-svn-id: https://develop.svn.wordpress.org/trunk@24459 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-21 01:32:54 +00:00
Andrew Nacin 473bef521b Add strict check to phpass's CheckPassword() method to avoid issues when the method is improperly called.
git-svn-id: https://develop.svn.wordpress.org/trunk@24457 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-21 01:21:12 +00:00
Mark Jaquith 0aed5a2803 Squash some PHP notices in taxonomy queries.
props hakre, wonderboymusic. fixes #16465.

git-svn-id: https://develop.svn.wordpress.org/trunk@24456 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-20 17:21:13 +00:00
Andrew Nacin c69462faa8 Add some localized date/time strings to the main wordpress.pot. These strings appear in the admin only but can be leveraged outside of the admin by design. fixes #22916.
git-svn-id: https://develop.svn.wordpress.org/trunk@24454 602fd350-edb4-49c9-b593-d223f7449a82
2013-06-20 14:27:37 +00:00