# This patch file was generated by NetBeans IDE
# Following Index: paths are relative to: /Users/luke/Sites/trunk.dev
# This patch can be applied using context Tools: Patch action on respective folder.
# It uses platform neutral UTF-8 encoding and \n newlines.
# Above lines and this line are ignored by the patching process.
|
|
|
1 | 1 | <?php |
| 2 | /** |
| 3 | * Confirms that the activation key that is sent in an email after a user signs |
| 4 | * up for a new blog matchs the key for that user and then displays confirmation. |
| 5 | * |
| 6 | * @package WordPress |
| 7 | */ |
| 8 | |
| 9 | /** Define ABSPATH as this file's directory */ |
2 | 10 | define( 'WP_INSTALLING', true ); |
3 | 11 | |
4 | 12 | /** Sets up the WordPress Environment. */ |
… |
… |
|
16 | 24 | |
17 | 25 | do_action( 'activate_header' ); |
18 | 26 | |
| 27 | /** |
| 28 | * Adds an action hook specific to this page that fires on wp_head |
| 29 | */ |
19 | 30 | function do_activate_header() { |
20 | 31 | do_action( 'activate_wp_head' ); |
21 | 32 | } |
22 | 33 | add_action( 'wp_head', 'do_activate_header' ); |
23 | 34 | |
| 35 | /** |
| 36 | * Loads styles specific to this page. |
| 37 | */ |
| 38 | No newline at end of file |
24 | 39 | function wpmu_activate_stylesheet() { |
25 | 40 | ?> |
26 | 41 | <style type="text/css"> |