Changeset 8589 for trunk/wp-admin/link-manager.php
- Timestamp:
- 08/08/2008 05:05:10 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/link-manager.php
r7883 r8589 80 80 <p id="post-search"> 81 81 <label class="hidden" for="post-search-input"><?php _e( 'Search Links' ); ?>:</label> 82 <input type="text" id="post-search-input" name="s" value="<?php echo attribute_escape(stripslashes($_GET['s'])); ?>" />82 <input type="text" id="post-search-input" name="s" value="<?php echo ( isset( $_GET['s'] ) ? attribute_escape(stripslashes($_GET['s'])) : ''); ?>" /> 83 83 <input type="submit" value="<?php _e( 'Search Links' ); ?>" class="button" /> 84 84 </p> … … 151 151 <tbody> 152 152 <?php 153 $i = 0; // It is slower incrementing an undefined and valueless variable. 154 153 155 foreach ($links as $link) { 154 156 $link = sanitize_bookmark($link);
Note: See TracChangeset
for help on using the changeset viewer.