Changeset 16553 for trunk/wp-admin/themes.php
- Timestamp:
- 11/23/2010 08:17:22 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/themes.php
r16175 r16553 130 130 <h3><?php _e('Available Themes'); ?></h3> 131 131 132 <form class="search-form " action="" method="get">132 <form class="search-form filter-form" action="" method="get"> 133 133 <p class="search-box"> 134 134 <label class="screen-reader-text" for="theme-search-input"><?php _e('Search Themes'); ?>:</label> … … 140 140 <br class="clear"/> 141 141 142 <div id="filter s" style="display: none;">142 <div id="filter-box" style="display: none;"> 143 143 <?php $feature_list = get_theme_feature_list(); ?> 144 144 <div class="feature-filter"> … … 155 155 $feature_name = $feature; 156 156 $feature_name = esc_html( $feature_name ); 157 $feature = esc_attr( $feature);157 $feature = esc_attr( $feature ); 158 158 ?> 159 159 <li> 160 <input type="checkbox" name="features[ <?php echo $key; ?>]" id="feature-id-<?php echo $key; ?>" value="<?php echo $key; ?>" <?php checked( in_array( $key, $wp_list_table->features ) ); ?>/>160 <input type="checkbox" name="features[]" id="feature-id-<?php echo $key; ?>" value="<?php echo $key; ?>" <?php checked( in_array( $key, $wp_list_table->features ) ); ?>/> 161 161 <label for="feature-id-<?php echo $key; ?>"><?php echo $feature_name; ?></label> 162 162 </li>
Note: See TracChangeset
for help on using the changeset viewer.