﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
12166,activate_header action should be in wp_head,freddyware,,"In `wp-activate.php`, the `activate_header` action is executed without wrapping it in a function that inserts it into `wp_head`.

{{{
do_action(""activate_header"");
}}}
is directly called on line 19.

By contrast, `wp-signup.php` wraps it in a function which is inserted into `wp_head`, so a plugin can add stylesheets and so on without having it appear before the DOCTYPE.

{{{
function do_signup_header() {
	do_action(""signup_header"");
}
add_action( 'wp_head', 'do_signup_header' );
}}}

I am submitting a patch to fix this in wp-activate.php.
",defect (bug),closed,normal,3.0,Multisite,3.0,normal,fixed,has-patch,frederick.ding@…
