diff -r f507feede89a -r 09a1c134465b web/wp-admin/includes/theme.php --- a/web/wp-admin/includes/theme.php Wed Dec 19 12:35:13 2012 -0800 +++ b/web/wp-admin/includes/theme.php Wed Dec 19 17:46:52 2012 -0800 @@ -23,7 +23,7 @@ ob_start(); if ( empty( $redirect ) ) - $redirect = wp_nonce_url('themes.php?action=delete&stylesheet=' . $stylesheet, 'delete-theme_' . $stylesheet); + $redirect = wp_nonce_url('themes.php?action=delete&stylesheet=' . urlencode( $stylesheet ), 'delete-theme_' . $stylesheet); if ( false === ($credentials = request_filesystem_credentials($redirect)) ) { $data = ob_get_contents(); ob_end_clean(); @@ -151,7 +151,7 @@ function get_theme_feature_list( $api = true ) { // Hard-coded list is used if api not accessible. $features = array( - __('Colors') => array( + __( 'Colors' ) => array( 'black' => __( 'Black' ), 'blue' => __( 'Blue' ), 'brown' => __( 'Brown' ), @@ -169,7 +169,7 @@ 'light' => __( 'Light' ), ), - __('Columns') => array( + __( 'Columns' ) => array( 'one-column' => __( 'One Column' ), 'two-columns' => __( 'Two Columns' ), 'three-columns' => __( 'Three Columns' ), @@ -178,7 +178,7 @@ 'right-sidebar' => __( 'Right Sidebar' ), ), - __('Width') => array( + __( 'Width' ) => array( 'fixed-width' => __( 'Fixed Width' ), 'flexible-width' => __( 'Flexible Width' ), ), @@ -193,6 +193,7 @@ 'editor-style' => __( 'Editor Style' ), 'featured-image-header' => __( 'Featured Image Header' ), 'featured-images' => __( 'Featured Images' ), + 'flexible-header' => __( 'Flexible Header' ), 'front-page-post-form' => __( 'Front Page Posting' ), 'full-width-template' => __( 'Full Width Template' ), 'microformats' => __( 'Microformats' ),