Make WordPress Core


Ignore:
Timestamp:
02/14/2008 12:39:38 AM (17 years ago)
Author:
ryan
Message:

Options are called Settings now. Props hansengel. see #5850

File:
1 edited

Legend:

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

    r6042 r6833  
    22require_once('admin.php');
    33
    4 $title = __('Options');
     4$title = __('Settings');
    55$this_file = 'options.php';
    66$parent_file = 'options-general.php';
     
    4545
    4646<div class="wrap">
    47   <h2><?php _e('All Options'); ?></h2>
     47  <h2><?php _e('All Settings'); ?></h2>
    4848  <form name="form" action="options.php" method="post" id="all-options">
    4949  <?php wp_nonce_field('update-options') ?>
    5050  <input type="hidden" name="action" value="update" />
    51     <p class="submit"><input type="submit" name="Update" value="<?php _e('Update Options &raquo;') ?>" /></p>
     51    <p class="submit"><input type="submit" name="Update" value="<?php _e('Save Changes &raquo;') ?>" /></p>
    5252  <table width="98%">
    5353<?php
     
    8787  </table>
    8888<?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 &raquo;') ?>" /></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 &raquo;') ?>" /></p>
    9090  </form>
    9191</div>
Note: See TracChangeset for help on using the changeset viewer.