Make WordPress Core

Changeset 3790


Ignore:
Timestamp:
05/22/2006 07:34:28 PM (20 years ago)
Author:
ryan
Message:

Move privacy options to a separate Privacy tab.

Location:
trunk/wp-admin
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/menu.php

    r3769 r3790  
    4242$submenu['options-general.php'][20] = array(__('Reading'), 'manage_options', 'options-reading.php');
    4343$submenu['options-general.php'][25] = array(__('Discussion'), 'manage_options', 'options-discussion.php');
    44 $submenu['options-general.php'][30] = array(__('Permalinks'), 'manage_options', 'options-permalink.php');
    45 $submenu['options-general.php'][35] = array(__('Miscellaneous'), 'manage_options', 'options-misc.php');
     44$submenu['options-general.php'][30] = array(__('Privacy'), 'manage_options', 'options-privacy.php');
     45$submenu['options-general.php'][35] = array(__('Permalinks'), 'manage_options', 'options-permalink.php');
     46$submenu['options-general.php'][40] = array(__('Miscellaneous'), 'manage_options', 'options-misc.php');
    4647
    4748$submenu['plugins.php'][5] = array(__('Plugins'), 'activate_plugins', 'plugins.php');
  • trunk/wp-admin/options-general.php

    r3759 r3790  
    2323<?php _e('In a few words, explain what this weblog is about.') ?></td>
    2424</tr>
    25 <tr valign="top">
    26 <th scope="row"><?php _e('Search Engines:') ?> </th>
    27 <td><label><input type="checkbox" name="blog_public" value="1" <?php checked('1', get_option('blog_public')); ?> /> <?php _e('I would like my blog to appear in search engines like Google and Technorati.'); ?></label>
    28 </td>
    29 </tr>
    3025<tr valign="top">
    3126<th scope="row"><?php _e('WordPress address (URI):') ?></th>
Note: See TracChangeset for help on using the changeset viewer.