Make WordPress Core

Changeset 2470


Ignore:
Timestamp:
03/22/2005 06:34:23 AM (20 years ago)
Author:
ryan
Message:

Don't double encode options. http://mosquito.wordpress.org/view.php?id=1151 Props: MC_incubus

File:
1 edited

Legend:

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

    r2436 r2470  
    104104<tr>
    105105    <th scope='row'><label for='$option->option_name'>$option->option_name</label></th>
    106     <td><input type='text' name='$option->option_name' id='$option->option_name' size='30' value='" . htmlspecialchars($value, ENT_QUOTES) . "' /></td>
     106    <td><input type='text' name='$option->option_name' id='$option->option_name' size='30' value='" . $value . "' /></td>
    107107    <td>$option->option_description</td>
    108108</tr>";
Note: See TracChangeset for help on using the changeset viewer.