Ticket #5958: 5958-2.2.diff
| File 5958-2.2.diff, 879 bytes (added by , 18 years ago) |
|---|
-
wp-admin/options.php
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 <table width="98%">51 <table class="niceblue"> 52 52 <?php 53 53 $options = $wpdb->get_results("SELECT * FROM $wpdb->options ORDER BY option_name"); 54 54 … … 73 73 } 74 74 echo " 75 75 <tr> 76 <th scope='row'> <label for='$option->option_name'>$option->option_name</label></th>76 <th scope='row'>$option->option_name</th> 77 77 <td>"; 78 78 79 79 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>";