We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8cff43 commit 7f3ae71Copy full SHA for 7f3ae71
1 file changed
src/wp-includes/formatting.php
@@ -2128,8 +2128,13 @@ function sanitize_file_name( $filename ) {
2128
* the first block for that script, and then checks that the string
2129
* uses only a single block. This works for the scripts currently in
2130
* Unicode, and will work for future scripts as long as the committee
2131
- * keeps estimating correctly, so there's only one block for each
+ * keeps estimating high enough, so there's only one block for each
2132
* future script.
2133
+ *
2134
+ * @since 6.9.0
2135
2136
+ * @param $input A string to check
2137
+ * @return true if all letters in the string belong to the same unicode script, and false if letters fromm two more more scripts are included.
2138
*/
2139
2140
function uses_single_unicode_script( $input ) {
0 commit comments