Fix some notices. props mrmist, fixes #15079. Also some standards fixes.
git-svn-id: https://develop.svn.wordpress.org/trunk@15761 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
f8be3f9fd1
commit
71dec45612
@ -136,41 +136,40 @@ if ( ! current_user_can( 'switch_themes' ) ) {
|
|||||||
<p class="search-box">
|
<p class="search-box">
|
||||||
<label class="screen-reader-text" for="theme-search-input"><?php _e('Search Themes'); ?>:</label>
|
<label class="screen-reader-text" for="theme-search-input"><?php _e('Search Themes'); ?>:</label>
|
||||||
<input type="text" id="tag-search-input" name="s" value="<?php _admin_search_query(); ?>" />
|
<input type="text" id="tag-search-input" name="s" value="<?php _admin_search_query(); ?>" />
|
||||||
<input type="submit" value="<?php esc_attr_e('Search Themes'); ?>" class="button" />
|
<input type="submit" value="<?php esc_attr_e('Search Themes'); ?>" class="button" />
|
||||||
<a id="filter-click" href="?filter=1"><?php _e( 'Feature Filter' ); ?></a>
|
<a id="filter-click" href="?filter=1"><?php _e( 'Feature Filter' ); ?></a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<br class="clear"/>
|
<br class="clear"/>
|
||||||
|
|
||||||
<div id="filters" <?php if ( $tpage != 'filter' ) echo ' style="display: none"' ?>>
|
<div id="filters" <?php if ( ! isset( $tpage ) || $tpage != 'filter' ) echo ' style="display: none"' ?>>
|
||||||
<?php $feature_list = get_theme_feature_list(); ?>
|
<?php $feature_list = get_theme_feature_list(); ?>
|
||||||
<div class="feature-filter">
|
<div class="feature-filter">
|
||||||
<p class="install-help"><?php _e('Theme filters') ?></p>
|
<p class="install-help"><?php _e('Theme filters') ?></p>
|
||||||
|
|
||||||
<?php foreach ( $feature_list as $feature_name => $features ) : ?>
|
<?php foreach ( $feature_list as $feature_name => $features ) :
|
||||||
<?php $feature_name = esc_html( $feature_name ); ?>
|
$feature_name = esc_html( $feature_name ); ?>
|
||||||
|
|
||||||
<div class="feature-container">
|
<div class="feature-container">
|
||||||
<div class="feature-name"><?php echo $feature_name ?></div>
|
<div class="feature-name"><?php echo $feature_name ?></div>
|
||||||
|
|
||||||
<ol style="float: left; width: 725px;" class="feature-group">
|
<ol style="float: left; width: 725px;" class="feature-group">
|
||||||
<?php foreach ( $features as $key => $feature ) : ?>
|
<?php foreach ( $features as $key => $feature ) :
|
||||||
<?php
|
|
||||||
$feature_name = $feature;
|
$feature_name = $feature;
|
||||||
$feature_name = esc_html( $feature_name );
|
$feature_name = esc_html( $feature_name );
|
||||||
$feature = esc_attr($feature);
|
$feature = esc_attr($feature);
|
||||||
?>
|
?>
|
||||||
<li>
|
<li>
|
||||||
<input type="checkbox" name="features[<?php echo $key; ?>]" id="feature-id-<?php echo $key; ?>" value="<?php echo $key; ?>" <?php if ( in_array( $key, $checked_features ) ) echo ' checked="checked"' ?>/>
|
<input type="checkbox" name="features[<?php echo $key; ?>]" id="feature-id-<?php echo $key; ?>" value="<?php echo $key; ?>" <?php checked( isset( $checked_features ) && in_array( $key, $checked_features ) ); ?>/>
|
||||||
<label for="feature-id-<?php echo $key; ?>"><?php echo $feature_name; ?></label>
|
<label for="feature-id-<?php echo $key; ?>"><?php echo $feature_name; ?></label>
|
||||||
</li>
|
</li>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</ol>
|
</ol>
|
||||||
</div>
|
</div>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
|
|
||||||
<div class="feature-container">
|
<div class="feature-container">
|
||||||
<input style="margin-left: 120px" type="submit" class="button-secondary submitter" value="<?php _e( 'Apply Filters' ); ?>" />
|
<input style="margin-left: 120px" type="submit" class="button-secondary submitter" value="<?php esc_attr_e( 'Apply Filters' ); ?>" />
|
||||||
|
|
||||||
<small><a id="mini-filter-click" href="<?php echo admin_url( 'themes.php' ); ?>"><?php _e( 'Close filters' )?></a></small>
|
<small><a id="mini-filter-click" href="<?php echo admin_url( 'themes.php' ); ?>"><?php _e( 'Close filters' )?></a></small>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user