Changeset 37283
- Timestamp:
- 04/21/2016 07:21:40 PM (10 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 2 edited
-
class-wp-customize-manager.php (modified) (1 diff)
-
formatting.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-manager.php
r37197 r37283 2237 2237 } 2238 2238 } 2239 2240 /**2241 * Sanitizes a hex color.2242 *2243 * Returns either '', a 3 or 6 digit hex color (with #), or nothing.2244 * For sanitizing values without a #, see sanitize_hex_color_no_hash().2245 *2246 * @since 3.4.02247 *2248 * @param string $color2249 * @return string|void2250 */2251 function sanitize_hex_color( $color ) {2252 if ( '' === $color )2253 return '';2254 2255 // 3 or 6 hex digits, or the empty string.