Changeset 10823 for trunk/wp-admin/includes/plugin-install.php
- Timestamp:
- 03/20/2009 12:14:57 AM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/includes/plugin-install.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/plugin-install.php
r10820 r10823 126 126 127 127 <h4><?php _e('Search') ?></h4> 128 <p class="install-help"><?php _e('Search for plugins by keyword, author, or tag.') ?></p> 128 129 <?php install_search_form(); ?> 129 130 130 131 <h4><?php _e('Install a plugin in .zip format') ?></h4> 131 <p ><?php _e('If you have a plugin in a .zip format, You may install it by uploading it here.') ?></p>132 <p class="install-help"><?php _e('If you have a plugin in a .zip format, You may install it by uploading it here.') ?></p> 132 133 <form method="post" enctype="multipart/form-data" action="<?php echo admin_url('plugin-install.php?tab=upload') ?>"> 133 134 <?php wp_nonce_field( 'plugin-upload') ?> … … 137 138 138 139 <h4><?php _e('Popular tags') ?></h4> 139 <p ><?php _e('You may also browse based on the most popular tags in the Plugin Directory:') ?></p>140 <p class="install-help"><?php _e('You may also browse based on the most popular tags in the Plugin Directory:') ?></p> 140 141 <?php 141 142 … … 150 151 'id' => sanitize_title_with_dashes($tag['name']), 151 152 'count' => $tag['count'] ); 152 echo '<p >';153 echo '<p class="popular-tags">'; 153 154 echo wp_generate_tag_cloud($tags, array( 'single_text' => __('%d plugin'), 'multiple_text' => __('%d plugins') ) ); 154 155 echo '</p><br class="clear" />'; … … 170 171 <option value="tag"<?php selected('tag', $type) ?>><?php _e('Tag') ?></option> 171 172 </select> 172 <input type="text" name="s" id="search-field" value="<?php echo attribute_escape($term) ?>" />173 <input type="text" name="s" class="search-input" value="<?php echo attribute_escape($term) ?>" /> 173 174 <input type="submit" name="search" value="<?php echo attribute_escape(__('Search')) ?>" class="button" /> 174 175 </form><?php
Note: See TracChangeset
for help on using the changeset viewer.