Make WordPress Core

Ticket #5958: 5958.diff

File 5958.diff, 925 bytes (added by fitztrev, 18 years ago)
  • wp-admin/options.php

     
    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   <table width="98%">
     51  <table class="niceblue">
    5252<?php
    5353$options = $wpdb->get_results("SELECT * FROM $wpdb->options ORDER BY option_name");
    5454
     
    7272                $class = 'all-options';
    7373        }
    7474        echo "
    75 <tr>
    76         <th scope='row'><label for='$option->option_name'>$option->option_name</label></th>
     75<tr valign='top'>
     76        <th scope='row'>$option->option_name</th>
    7777<td>";
    7878
    7979        if (strpos($value, "\n") !== false) echo "<textarea class='$class' name='$option->option_name' id='$option->option_name' cols='30' rows='5'>" . wp_specialchars($value) . "</textarea>";