diff --git a/wp-includes/functions.php b/wp-includes/functions.php
index 7710ab3..04c8765 100644
|
a
|
b
|
function __return_empty_string() { |
| 4701 | 4701 | } |
| 4702 | 4702 | |
| 4703 | 4703 | /** |
| | 4704 | * Returns 'on'. |
| | 4705 | * |
| | 4706 | * Useful for returning an option for a checked checkbox. |
| | 4707 | * |
| | 4708 | * @since 4.6 |
| | 4709 | * |
| | 4710 | * @return string 'on'. |
| | 4711 | */ |
| | 4712 | function __return_on() { |
| | 4713 | return 'on'; |
| | 4714 | } |
| | 4715 | |
| | 4716 | /** |
| 4704 | 4717 | * Send a HTTP header to disable content type sniffing in browsers which support it. |
| 4705 | 4718 | * |
| 4706 | 4719 | * @since 3.0.0 |