#23516 closed defect (bug) (fixed)
Current 3.6 trunk wont install
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Priority: | normal | Milestone: | 3.6 |
| Component: | Upgrade/Install | Version: | trunk |
| Severity: | major | Keywords: | dev-feedback |
| 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)
comment:1
SergeyBiryukov
— 4 months 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?
JustinSainton
— 4 months ago
comment:3
JustinSainton
— 4 months ago
23516.1.diff replaces esc_url() with esc_attr().
comment:4
SergeyBiryukov
— 4 months ago
- Owner set to SergeyBiryukov
- Resolution set to fixed
- Status changed from new to closed
In 23455:
comment:5
follow-up:
↓ 7
obenland
— 4 months 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?
comment:7
in reply to:
↑ 5
SergeyBiryukov
— 4 months ago
Note: See
TracTickets for help on using
tickets.
Patch assuming it's ok to load kses.php at this point