#23516 closed defect (bug) (fixed)
Current 3.6 trunk wont install
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 3.6 | Priority: | normal |
Severity: | major | Version: | 3.6 |
Component: | Upgrade/Install | Keywords: | dev-feedback |
Focuses: | Cc: |
Description
Setup for a fresh WP 3.6 install using current trunk crashes with an empty white box on a gray background.
[18-Feb-2013 22:53:56] PHP Fatal error: Call to undefined function wp_kses_normalize_entities() in /Applications/MAMP/htdocs/wp36/wp-includes/formatting.php on line 2797 [18-Feb-2013 22:53:56] PHP Stack trace: [18-Feb-2013 22:53:56] PHP 1. {main}() /Applications/MAMP/htdocs/wp36/wp-admin/setup-config.php:0 [18-Feb-2013 22:53:56] PHP 2. setup_config_display_header() /Applications/MAMP/htdocs/wp36/wp-admin/setup-config.php:109 [18-Feb-2013 22:53:56] PHP 3. esc_url() /Applications/MAMP/htdocs/wp36/wp-admin/setup-config.php:103
Attachments (2)
Change History (9)
#1
@
8 years ago
- Keywords dev-feedback added
- Milestone changed from Awaiting Review to 3.6
- Severity changed from normal to major
Broken in [23413]. We don't include kses.php
in setup-config.php
:
http://core.trac.wordpress.org/browser/tags/3.5.1/wp-admin/setup-config.php#L58
Should we revert to esc_attr_e()
there, or perhaps include kses.php
?
#4
@
8 years ago
- Owner set to SergeyBiryukov
- Resolution set to fixed
- Status changed from new to closed
In 23455:
#5
follow-up:
↓ 7
@
8 years ago
Shouldn't it still be echo esc_attr()
then, rather than using a translation function with esc_attr_e()
? Or was that not part of the original ticket?
Note: See
TracTickets for help on using
tickets.
Patch assuming it's ok to load kses.php at this point