Make WordPress Core


Ignore:
Timestamp:
11/19/2006 07:56:05 AM (18 years ago)
Author:
ryan
Message:

Remove trailing spaces and convert spaces to tabs. Props Nazgul. fixes #986

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/options-privacy.php

    r4480 r4495  
    77include('./admin-header.php');
    88?>
    9  
     9
    1010<div class="wrap">
    1111<h2><?php _e('Privacy Options') ?></h2>
    12 <form method="post" action="options.php"> 
     12<form method="post" action="options.php">
    1313<?php wp_nonce_field('update-options') ?>
    14 <table class="optiontable"> 
    15 <tr valign="top"> 
    16 <th scope="row"><?php _e('Blog visibility:') ?> </th> 
     14<table class="optiontable">
     15<tr valign="top">
     16<th scope="row"><?php _e('Blog visibility:') ?> </th>
    1717<td>
    1818<p><input id="blog-public" type="radio" name="blog_public" value="1" <?php checked('1', get_option('blog_public')); ?> />
     
    2121<label for="blog-norobots"><?php _e('I would like to block search engines, but allow normal visitors'); ?></label></p>
    2222<?php do_action('blog_privacy_selector'); ?>
    23 </td> 
     23</td>
    2424</tr>
    25 </table> 
     25</table>
    2626
    2727<p class="submit"><input type="submit" name="Submit" value="<?php _e('Update Options &raquo;') ?>" />
    28 <input type="hidden" name="action" value="update" /> 
    29 <input type="hidden" name="page_options" value="blog_public" /> 
     28<input type="hidden" name="action" value="update" />
     29<input type="hidden" name="page_options" value="blog_public" />
    3030</p>
    3131</form>
    3232
    33 </div> 
     33</div>
    3434
    3535<?php include('./admin-footer.php') ?>
Note: See TracChangeset for help on using the changeset viewer.