Changeset 4658 for trunk/wp-admin/edit-page-form.php
- Timestamp:
- 12/21/2006 11:06:18 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-page-form.php
r4656 r4658 53 53 <label for="comment_status" class="selectit"> 54 54 <input name="comment_status" type="checkbox" id="comment_status" value="open" <?php checked($post->comment_status, 'open'); ?> /> 55 <?php _e('Allow Comments') ?></label> 55 <?php _e('Allow Comments') ?></label> 56 56 <label for="ping_status" class="selectit"><input name="ping_status" type="checkbox" id="ping_status" value="open" <?php checked($post->ping_status, 'open'); ?> /> <?php _e('Allow Pings') ?></label> 57 57 </div> … … 59 59 60 60 <fieldset class="dbx-box"> 61 <h3 class="dbx-handle"><?php _e('Page Status') ?></h3> 61 <h3 class="dbx-handle"><?php _e('Page Status') ?></h3> 62 62 <div class="dbx-content"><?php if ( current_user_can('publish_pages') ) : ?> 63 63 <label for="post_status_publish" class="selectit"><input id="post_status_publish" name="post_status" type="radio" value="publish" <?php checked($post->post_status, 'publish'); checked($post->post_status, 'future'); ?> /> <?php _e('Published') ?></label> … … 68 68 69 69 <fieldset id="passworddiv" class="dbx-box"> 70 <h3 class="dbx-handle"><?php _e('Page Password') ?></h3> 70 <h3 class="dbx-handle"><?php _e('Page Password') ?></h3> 71 71 <div class="dbx-content"><input name="post_password" type="text" size="13" id="post_password" value="<?php echo $post->post_password ?>" /></div> 72 72 </fieldset> 73 73 74 74 <fieldset id="pageparent" class="dbx-box"> 75 <h3 class="dbx-handle"><?php _e('Page Parent') ?></h3> 75 <h3 class="dbx-handle"><?php _e('Page Parent') ?></h3> 76 76 <div class="dbx-content"><p><select name="parent_id"> 77 77 <option value='0'><?php _e('Main Page (no parent)'); ?></option> … … 83 83 <?php if ( 0 != count( get_page_templates() ) ) { ?> 84 84 <fieldset id="pagetemplate" class="dbx-box"> 85 <h3 class="dbx-handle"><?php _e('Page Template :') ?></h3>85 <h3 class="dbx-handle"><?php _e('Page Template') ?></h3> 86 86 <div class="dbx-content"><p><select name="page_template"> 87 87 <option value='default'><?php _e('Default Template'); ?></option> … … 93 93 94 94 <fieldset id="slugdiv" class="dbx-box"> 95 <h3 class="dbx-handle"><?php _e('Page Slug') ?></h3> 95 <h3 class="dbx-handle"><?php _e('Page Slug') ?></h3> 96 96 <div class="dbx-content"><input name="post_name" type="text" size="13" id="post_name" value="<?php echo $post->post_name ?>" /></div> 97 97 </fieldset> … … 126 126 127 127 <fieldset id="titlediv"> 128 <legend><?php _e('Page Title') ?></legend> 128 <legend><?php _e('Page Title') ?></legend> 129 129 <div><input type="text" name="post_title" size="30" tabindex="1" value="<?php echo $post->post_title; ?>" id="title" /></div> 130 130 </fieldset> … … 139 139 <span id="autosave"></span> 140 140 <input name="save" type="submit" id="save" tabindex="3" value="<?php _e('Save and Continue Editing'); ?>" /> 141 <input type="submit" name="submit" value="<?php _e('Save') ?>" style="font-weight: bold;" tabindex="4" /> 142 <?php 141 <input type="submit" name="submit" value="<?php _e('Save') ?>" style="font-weight: bold;" tabindex="4" /> 142 <?php 143 143 if ('publish' != $post->post_status || 0 == $post_ID): 144 144 ?> 145 145 <?php if ( current_user_can('publish_pages') ) : ?> 146 <input name="publish" type="submit" id="publish" tabindex="5" accesskey="p" value="<?php _e('Publish') ?>" /> 146 <input name="publish" type="submit" id="publish" tabindex="5" accesskey="p" value="<?php _e('Publish') ?>" /> 147 147 <?php endif; endif;?> 148 148 <input name="referredby" type="hidden" id="referredby" value="<?php echo $sendto; ?>" />
Note: See TracChangeset
for help on using the changeset viewer.