Changeset 6833 for trunk/wp-admin/options.php
- Timestamp:
- 02/14/2008 12:39:38 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options.php
r6042 r6833 2 2 require_once('admin.php'); 3 3 4 $title = __(' Options');4 $title = __('Settings'); 5 5 $this_file = 'options.php'; 6 6 $parent_file = 'options-general.php'; … … 45 45 46 46 <div class="wrap"> 47 <h2><?php _e('All Options'); ?></h2>47 <h2><?php _e('All Settings'); ?></h2> 48 48 <form name="form" action="options.php" method="post" id="all-options"> 49 49 <?php wp_nonce_field('update-options') ?> 50 50 <input type="hidden" name="action" value="update" /> 51 <p class="submit"><input type="submit" name="Update" value="<?php _e(' Update Options »') ?>" /></p>51 <p class="submit"><input type="submit" name="Update" value="<?php _e('Save Changes »') ?>" /></p> 52 52 <table width="98%"> 53 53 <?php … … 87 87 </table> 88 88 <?php $options_to_update = implode(',', $options_to_update); ?> 89 <p class="submit"><input type="hidden" name="page_options" value="<?php echo $options_to_update; ?>" /><input type="submit" name="Update" value="<?php _e(' Update Options »') ?>" /></p>89 <p class="submit"><input type="hidden" name="page_options" value="<?php echo $options_to_update; ?>" /><input type="submit" name="Update" value="<?php _e('Save Changes »') ?>" /></p> 90 90 </form> 91 91 </div>
Note: See TracChangeset
for help on using the changeset viewer.