#22389 closed defect (bug) (fixed)
wp_dropdown_pages() is failing in Beta-2
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 3.5 | Priority: | high |
Severity: | major | Version: | 3.5 |
Component: | Template | Keywords: | |
Focuses: | Cc: |
Description (last modified by )
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)
Note: See
TracTickets for help on using
tickets.
Confirmed, regression in r22445, see #20376.