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

git-svn-id: https://develop.svn.wordpress.org/trunk@2470 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2005-03-22 06:34:23 +00:00
parent 7287678885
commit 135a0fc62d
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ foreach ($options as $option) :
echo " echo "
<tr> <tr>
<th scope='row'><label for='$option->option_name'>$option->option_name</label></th> <th scope='row'><label for='$option->option_name'>$option->option_name</label></th>
<td><input type='text' name='$option->option_name' id='$option->option_name' size='30' value='" . htmlspecialchars($value, ENT_QUOTES) . "' /></td> <td><input type='text' name='$option->option_name' id='$option->option_name' size='30' value='" . $value . "' /></td>
<td>$option->option_description</td> <td>$option->option_description</td>
</tr>"; </tr>";
endforeach; endforeach;