Changeset 30681 for trunk/src/wp-includes/formatting.php
- Timestamp:
- 12/01/2014 01:33:34 AM (11 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/formatting.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/formatting.php
r30575 r30681 578 578 * 579 579 * @param string $string The text which is to be encoded. 580 * @param mixed$quote_style Optional. Converts double quotes if set to ENT_COMPAT, both single and double if set to ENT_QUOTES or none if set to ENT_NOQUOTES. Also compatible with old values; converting single quotes if set to 'single', double if set to 'double' or both if otherwise set. Default is ENT_NOQUOTES.580 * @param int $quote_style Optional. Converts double quotes if set to ENT_COMPAT, both single and double if set to ENT_QUOTES or none if set to ENT_NOQUOTES. Also compatible with old values; converting single quotes if set to 'single', double if set to 'double' or both if otherwise set. Default is ENT_NOQUOTES. 581 581 * @param string $charset Optional. The character encoding of the string. Default is false. 582 582 * @param boolean $double_encode Optional. Whether to encode existing html entities. Default is false. … … 1318 1318 * 1319 1319 * @param string $orderby Order by string to be checked. 1320 * @return string|boolReturns the order by clause if it is a match, false otherwise.1320 * @return false|string Returns the order by clause if it is a match, false otherwise. 1321 1321 */ 1322 1322 function sanitize_sql_orderby( $orderby ){ … … 2220 2220 * 2221 2221 * @param array $match The preg_replace_callback matches array 2222 * @return arrayConverted chars2222 * @return string Converted chars 2223 2223 */ 2224 2224 function _wp_iso_convert( $match ) {
Note: See TracChangeset
for help on using the changeset viewer.