Making WordPress.org

Ticket #4021: tabindex-showcase-submit-site.patch

File tabindex-showcase-submit-site.patch, 1.9 KB (added by ramizmanked, 6 years ago)
  • wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/page-submit.php

     
    8686        <input type="text" name="url" id="url" value="<?php echo esc_url( $url ); ?>" size="28" tabindex="3" class="text" /></p>
    8787
    8888        <p><label for="owner"><?php _e( "Do you own this site? (It's okay if you don't - we just want to know for contact purposes.)", 'wporg-showcase' ); ?></label><br />
    89         <select name="owner" id="owner">
     89        <select name="owner" id="owner" tabindex="4">
    9090                <option value="yes" <?php selected( $owner, 'yes' ); ?> ><?php _e( 'Yes', 'wporg-showcase' ); ?></option>
    9191                <option value="no" <?php selected( $owner, 'no' ); ?> ><?php _e( 'No', 'wporg-showcase' ); ?></option>
    9292        </select>
    9393
    9494        <p><label for="description"><?php _e( 'Please describe the site and, if applicable, the person or organization it represents.', 'wporg-showcase' ); ?></label><br />
    95         <textarea name="description" id="description" cols="60" rows="4" tabindex="4" class="text"><?php echo esc_textarea( $description ); ?></textarea></p>
     95        <textarea name="description" id="description" cols="60" rows="4" tabindex="5" class="text"><?php echo esc_textarea( $description ); ?></textarea></p>
    9696
    9797        <p><label for="why"><?php _e( 'What justifies this site being added to the WordPress Showcase? What makes it unique or interesting?', 'wporg-showcase' ); ?></label><br />
    98         <textarea name="why" id="why" cols="60" rows="4" tabindex="5" class="text"><?php echo esc_textarea( $why ); ?></textarea></p>
     98        <textarea name="why" id="why" cols="60" rows="4" tabindex="6" class="text"><?php echo esc_textarea( $why ); ?></textarea></p>
    9999
    100100        <p class="required"><?php _e( '* All fields are required.', 'wporg-showcase' ); ?></p>
    101101