#22389 closed defect (bug) (fixed)
wp_dropdown_pages() is failing in Beta-2
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Priority: | high | Milestone: | 3.5 |
| Component: | Template | Version: | 3.5 |
| Severity: | major | Keywords: | |
| Cc: |
Description (last modified by SergeyBiryukov)
The following code works in v3.4.2, but not in v3.5-beta2-22455. The dropdown containing the pages is not echo'd as is the default behavior.
See: http://codex.wordpress.org/Function_Reference/wp_dropdown_pages
Here's the unit test Plugin:
<?php
/*
Plugin Name: Sean's Unit Test
Plugin URI: http://www.beautomated.com/
Description: Runs a unit test of some simple code.
Author: beAutomated
Version: 0.1-alpha
Author URI: http://www.beautomated.com/
*/
add_action( 'admin_init', 'seantest_admin_init' );
function seantest_admin_init() {
echo '<p>Before Unit Test</p>';
wp_dropdown_pages();
echo '<p>After Unit Test</p>';
}
?>
Change History (3)
- Milestone changed from Awaiting Review to 3.5
- Priority changed from normal to high
- Owner set to nacin
- Resolution set to fixed
- Status changed from new to closed
In 22464:
comment:3
SergeyBiryukov — 7 months ago
- Description modified (diff)
Note: See
TracTickets for help on using
tickets.

Confirmed, regression in r22445, see #20376.