Changeset 4657 for trunk/wp-includes/functions.php
- Timestamp:
- 12/21/2006 10:45:58 AM (19 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/functions.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r4656 r4657 232 232 233 233 function form_option($option) { 234 echo attribute_escape( get_option($option));234 echo attribute_escape(get_option($option)); 235 235 } 236 236 … … 1191 1191 $v = substr(strstr($a, '='), 1); 1192 1192 $k = substr($a, 0, -(strlen($v)+1)); 1193 $html .= "\t\t<input type='hidden' name='" . attribute_escape( urldecode($k)) . "' value='" . attribute_escape(urldecode($v)) . "' />\n";1193 $html .= "\t\t<input type='hidden' name='" . attribute_escape(urldecode($k)) . "' value='" . attribute_escape(urldecode($v)) . "' />\n"; 1194 1194 } 1195 1195 $html .= "\t\t<input type='hidden' name='_wpnonce' value='" . wp_create_nonce($action) . "' />\n";
Note: See TracChangeset
for help on using the changeset viewer.